diff --git a/app/examples.hs b/app/examples.hs
deleted file mode 100644
--- a/app/examples.hs
+++ /dev/null
@@ -1,77 +0,0 @@
-{-# LANGUAGE ApplicativeDo #-}
-{-# LANGUAGE FlexibleContexts #-}
-{-# LANGUAGE OverloadedLabels #-}
-{-# LANGUAGE OverloadedStrings #-}
-{-# LANGUAGE NoImplicitPrelude #-}
-{-# OPTIONS_GHC -Wall #-}
-
-import Chart
-import Chart.Examples
-import Control.Lens
-import Lucid
-import NumHask.Prelude hiding (replace)
-import Web.Rep
-
-chartServer :: SharedRep IO (Text, Text) -> IO ()
-chartServer srep = sharedServer srep defaultSocketConfig (chartStyler True) defaultInputCode chartOutputCode
-
-chartOutputCode :: Either Text (Text, Text) -> IO [Code]
-chartOutputCode ea = 
-  pure $ case ea of
-    Left err -> [Append "debug" ("hashmap error: " <> err)]
-    Right (chart', debug') ->
-      [ Replace "output" chart',
-        Replace "debug" debug'
-      ]
-
-chartStyler :: Bool -> Page
-chartStyler doDebug =
-  mathjaxSvgPage "hasmathjax"
-    <> bootstrapPage
-    <> socketPage
-    & #htmlHeader .~ title_ "chart styler"
-    & #htmlBody
-      .~ divClass_
-        "container"
-        ( divClass_
-            "row d-flex justify-content-between"
-            ( sec "col4" "input"
-                <> sec "col8" "output"
-            )
-            <> bool mempty (divClass_ "row" (with div_ [id_ "debug"] mempty)) doDebug
-        )
-  where
-    sec d n = divClass_ d (with div_ [id_ n] mempty)
-
--- main example
-main :: IO ()
-main =
-  chartServer
-    ( repChoice
-        5
-        [ ("mempty", repEx memptyExample),
-          ("unit", repEx unitExample),
-          ("hud", repEx hudExample),
-          ("rect", repEx rectExample),
-          ("line", repEx lineExample),
-          ("wave", repEx mainExample),
-          ("text", repEx textExample),
-          ("glyphs", repEx glyphExample),
-          ("bar", repBarChart defaultSvgOptions barDataExample defaultBarOptions),
-          ( "pixel",
-            repPixelChart
-              ( defaultSvgOptions,
-                defaultPixelOptions
-                  & #poGrain .~ Point 20 20
-                  & #poRange .~ Rect 1 2 1 2,
-                defaultHudOptions,
-                defaultPixelLegendOptions "pixel test",
-                f1
-              )
-          ),
-          ("bound text bug", repEx (makeExample defaultHudOptions boundTextBug)),
-          ("compound chart", repEx (makeExample defaultHudOptions (lglyph <> glines))),
-          ("label", repEx (makeExample defaultHudOptions label)),
-          ("legend test", repNoData defaultSvgOptions BlankA legendTest)
-        ]
-    )
diff --git a/app/reanimate-example.hs b/app/reanimate-example.hs
new file mode 100644
--- /dev/null
+++ b/app/reanimate-example.hs
@@ -0,0 +1,57 @@
+#!/usr/bin/env stack
+-- stack runghc --package reanimate
+
+{- | reanimate example
+
+To run this example:
+
+stack runghc --package reanimate app/reanimate-example.hs
+
+and wait for the browser to open ...
+
+-}
+
+{-# LANGUAGE OverloadedLabels #-}
+{-# LANGUAGE OverloadedStrings #-}
+{-# LANGUAGE NoImplicitPrelude #-}
+{-# LANGUAGE NegativeLiterals #-}
+
+module Main where
+
+import Chart
+import Chart.Examples
+import Control.Lens hiding (transform)
+import Graphics.SvgTree.Types hiding (Point, Text)
+import NumHask.Prelude hiding (fold)
+import Reanimate hiding (scale)
+-- import qualified Reanimate as Re
+import Chart.Reanimate
+
+main :: IO ()
+main =
+  reanimate .
+  addStatic (mkBackgroundPixel (toPixelRGBA8 $ Colour 0.9 0.9 0.9 1)) .
+  mkAnimation 5 $
+  (\x ->
+     chartSvgTree
+     (expScaleChartData x hudOptionsExample))
+
+-- (pan surf one (Rect 0.2 0.21 0.1 0.11))
+
+surf :: Rect Double -> ChartSvg
+surf r = surfacegExample "rosenbrock" (Point 100 100) (Point 20 20) r (bimap (-1.0 *) (-1.0 .*) . rosenbrock 1 10) & #hudOptions . #hudAxes %~ fmap (#axisTick . #tstyle .~ TickRound (FormatComma (Just 2)) 8 NoTickExtend)
+
+pan :: (Rect Double -> ChartSvg) -> Rect Double -> Rect Double -> Double -> Tree
+pan f start end x = chartSvgTree $ f (start + fmap (*x) (end - start))
+
+expScaleChartData :: Double -> ChartSvg -> ChartSvg
+expScaleChartData x cs =
+     cs &
+     #chartList %~ fmap (expScaleData (10 * (x - 0.5))) &
+     #hudOptions . #hudAxes %~
+     fmap (set (#axisTick . #tstyle)
+           (TickRound (FormatComma (Just 2)) 8 NoTickExtend))
+
+expScaleData :: Double -> Chart Double -> Chart Double
+expScaleData s c = c & #xys %~ fmap (fmap ((10.0 ** s) *))
+
diff --git a/app/venn.hs b/app/venn.hs
deleted file mode 100644
--- a/app/venn.hs
+++ /dev/null
@@ -1,218 +0,0 @@
-{-# LANGUAGE DataKinds #-}
-{-# LANGUAGE DeriveGeneric #-}
-{-# LANGUAGE FlexibleContexts #-}
-{-# LANGUAGE FlexibleInstances #-}
-{-# LANGUAGE OverloadedLabels #-}
-{-# LANGUAGE OverloadedStrings #-}
-{-# LANGUAGE ScopedTypeVariables #-}
-{-# LANGUAGE TupleSections #-}
-{-# LANGUAGE TypeOperators #-}
-{-# LANGUAGE NoImplicitPrelude #-}
-{-# OPTIONS_GHC -Wall #-}
-{-# OPTIONS_GHC -fno-warn-type-defaults #-}
-
-import Chart
-import Control.Lens
-import Data.Generics.Labels ()
-import qualified Data.Map.Strict as Map
-import qualified Data.Text as Text
-import qualified Data.Text.Lazy as Lazy
-import Lucid
-import Lucid.Base
-import NumHask.Prelude
-
-xs :: Map.Map Text (Point Double)
-xs =
-  Map.fromList
-    [ ("origin", Point 0 0), -- origin
-      ("circle1", Point 0.5 (-0.5 + cos (pi / 6))), -- center of circle 1
-      ("circle2", Point 0 (-0.5)), -- center of circle 2
-      ("circle3", Point (-0.5) ((-0.5) + cos (pi / 6))), -- center of circle 3
-      ("corner1", Point 0 ((-0.5) + 2 * cos (pi / 6))), -- corner 1
-      ("corner2", Point 1 (-0.5)), -- corner 2
-      ("corner3", Point (-1) (-0.5)) -- corner 3
-    ]
-
-vennps :: Text -> (Double, Double)
-vennps k = let (Point x y) = xs Map.! k in (x, - y)
-
-moveA :: Double -> Double -> Text
-moveA x y = "M" <> show x <> "," <> show y
-
-data Arc = Arc {arcXr :: Double, arcYr :: Double, arcRot :: Double, arcLargeArcFlag :: Bool, arcSweepFlag :: Bool, arcX :: Double, arcY :: Double} deriving (Eq, Show, Generic)
-
-arcA_ :: Arc -> Text
-arcA_ a = show (view #arcXr a) <> " " <> show (view #arcYr a) <> " " <> show (view #arcRot a) <> " " <> bool "0" "1" (view #arcLargeArcFlag a) <> " " <> bool "0" "1" (view #arcSweepFlag a) <> " " <> show (view #arcX a) <> "," <> show (view #arcY a)
-
-arcA :: [Arc] -> Text
-arcA as = "A" <> Text.intercalate " " (arcA_ <$> as)
-
-outerseg1 :: Text
-outerseg1 =
-  Text.intercalate
-    " "
-    [ uncurry moveA (vennps "corner1"),
-      arcA
-        [ uncurry (Arc 0.5 0.5 0 True True) (vennps "corner2"),
-          uncurry (Arc 1 1 0 False False) (vennps "circle1"),
-          uncurry (Arc 1 1 0 False False) (vennps "corner1")
-        ],
-      "Z"
-    ]
-
-outerseg2 :: Text
-outerseg2 =
-  Text.intercalate
-    " "
-    [ uncurry moveA (vennps "corner3"),
-      arcA
-        [ uncurry (Arc 0.5 0.5 0 True False) (vennps "corner2"),
-          uncurry (Arc 1 1 0 False True) (vennps "circle2"),
-          uncurry (Arc 1 1 0 False True) (vennps "corner3")
-        ],
-      "Z"
-    ]
-
-outerseg3 :: Text
-outerseg3 =
-  Text.intercalate
-    " "
-    [ uncurry moveA (vennps "corner3"),
-      arcA
-        [ uncurry (Arc 0.5 0.5 0 True True) (vennps "corner1"),
-          uncurry (Arc 1 1 0 False False) (vennps "circle3"),
-          uncurry (Arc 1 1 0 False False) (vennps "corner3")
-        ],
-      "Z"
-    ]
-
-innerseg :: Text
-innerseg =
-  Text.intercalate
-    " "
-    [ uncurry moveA (vennps "circle1"),
-      arcA
-        [ uncurry (Arc 1 1 0 False True) (vennps "circle2"),
-          uncurry (Arc 1 1 0 False True) (vennps "circle3"),
-          uncurry (Arc 1 1 0 False True) (vennps "circle1")
-        ],
-      "Z"
-    ]
-
-midseg1 :: Text
-midseg1 =
-  Text.intercalate
-    " "
-    [ uncurry moveA (vennps "corner1"),
-      arcA
-        [ uncurry (Arc 1 1 0 False True) (vennps "circle1"),
-          uncurry (Arc 1 1 0 False False) (vennps "circle3"),
-          uncurry (Arc 1 1 0 False True) (vennps "corner1")
-        ],
-      "Z"
-    ]
-
-midseg2 :: Text
-midseg2 =
-  Text.intercalate
-    " "
-    [ uncurry moveA (vennps "circle1"),
-      arcA
-        [ uncurry (Arc 1 1 0 False True) (vennps "corner2"),
-          uncurry (Arc 1 1 0 False True) (vennps "circle2"),
-          uncurry (Arc 1 1 0 False False) (vennps "circle1")
-        ],
-      "Z"
-    ]
-
-midseg3 :: Text
-midseg3 =
-  Text.intercalate
-    " "
-    [ uncurry moveA (vennps "circle2"),
-      arcA
-        [ uncurry (Arc 1 1 0 False True) (vennps "corner3"),
-          uncurry (Arc 1 1 0 False True) (vennps "circle3"),
-          uncurry (Arc 1 1 0 False False) (vennps "circle2")
-        ],
-      "Z"
-    ]
-
-vennGlyphs :: [Text]
-vennGlyphs = [outerseg1, outerseg2, outerseg3, midseg1, midseg2, midseg3, innerseg]
-
-seg :: Text -> Colour -> GlyphStyle
-seg p c = defaultGlyphStyle & set #shape (PathGlyph p) & set #color c & set #borderColor white & set #borderSize 0.06
-
-venns :: [Chart Double]
-venns = zipWith (\p c -> Chart (GlyphA $ seg p c) [zero]) vennGlyphs palette1
-
-phrases :: [Chart Double]
-phrases = phraseChart <$> mainPhrases
-
-data Phrase
-  = Phrase
-      { phraseText :: Text,
-        phrasePosition :: Point Double,
-        phraseSize :: Double,
-        phraseRotation :: Double,
-        phraseColor :: Colour,
-        phraseTag :: Text,
-        phraseLevel :: Int
-      }
-  deriving (Eq, Show, Generic)
-
-phraseChart :: Phrase -> Chart Double
-phraseChart p = Chart (TextA a [view #phraseText p]) [PointXY (view #phrasePosition p)]
-  where
-    a =
-      defaultTextStyle
-        & set #size (view #phraseSize p)
-        & set #rotation (Just $ view #phraseRotation p)
-        & set #color (view #phraseColor p)
-
-mainPhrases :: [Phrase]
-mainPhrases =
-  [ Phrase "Composable" (Point 0.9 0.7) 0.16 60 c "composable" 1,
-    Phrase "Functional" (Point 0 (-1)) 0.16 0 c "functional" 1,
-    Phrase "Open" (Point (-1) 0.55) 0.16 (-60) c "open" 1,
-    Phrase "Accurate" (Point 0.6 (-0.4)) 0.16 0 c "accurate" 1,
-    Phrase "Dynamic" (Point (-0.6) (-0.4)) 0.16 0 c "dynamic" 1,
-    Phrase "Modern" (Point 0 0.7) 0.16 0 c "modern" 1,
-    Phrase "chart-svg" (Point 0 0) 0.2 0 c "chart-svg" 1
-  ]
-  where
-    c = black
-
-renderToSvgt :: CssOptions -> Point Double -> Rect Double -> [Chart Double] -> [(TextStyle, Text)] -> Html ()
-renderToSvgt csso (Point w' h') (Rect x z y w) cs tts =
-  with
-    ( svg2_
-        ( bool id (cssCrisp <>) (csso == UseCssCrisp) $
-            chartDefs cs
-              <> mconcat (zipWith svgt cs tts)
-        )
-    )
-    [ width_ (show w'),
-      height_ (show h'),
-      makeAttribute "viewBox" (show x <> " " <> show (- w) <> " " <> show (z - x) <> " " <> show (w - y))
-    ]
-
-writeVennWords :: IO ()
-writeVennWords =
-  writeFile "other/venn2.svg" $ Lazy.toStrict $ renderText
-    $ renderToSvgt
-      NoCssOptions
-      (Point 300 300)
-      (Rect (-2) 2 (-2) 2)
-      (phrases <> venns <> [Chart BlankA [R (-2.0) 2.0 (-2.0) 2.0]])
-    $ (defaultTextStyle & set #color colorText,)
-      <$> (replicate 7 "" <> (phraseText <$> mainPhrases) <> [""])
-
-writeVenn :: [Colour] -> IO ()
-writeVenn cs = writeChartsWith "other/venn.svg" (defaultSvgOptions & set #scaleCharts' NoScaleCharts & set #svgAspect ChartAspect & set #svgHeight 100) ([phraseChart (Phrase "λ" (Point 0 (-0.2)) 0.8 0 (Colour 0.1 0 0.2 1) "chart-svg" 1)] <> zipWith (\p c -> Chart (GlyphA $ seg p c) [PointXY (Point 0.0 0.0)]) [outerseg1, outerseg2, outerseg3, midseg1, midseg2, midseg3] cs <> [Chart BlankA [R (-1.5) 1.5 (-1.5) 1.5]])
-
-main :: IO ()
-main = do
-  writeVennWords
-  writeVenn palette1
diff --git a/chart-svg.cabal b/chart-svg.cabal
--- a/chart-svg.cabal
+++ b/chart-svg.cabal
@@ -1,9 +1,25 @@
 cabal-version:  2.4
 name:           chart-svg
-version:        0.1.3
-synopsis:       Charts in SVG
-description:    Chart library targetting SVG.
-category:       project
+version:        0.2.0
+synopsis:       Charting library targetting SVGs.
+description:
+    This package provides a charting library targetting SVG as the rendered output.
+    .
+    == Usage
+    .
+    >>> import Chart
+    >>>
+    >>> let xs = [[(0.0, 1.0), (1.0, 1.0), (2.0, 5.0)], [(0.0, 0.0), (3.0, 3.0)], [(0.5, 4.0), (0.5, 0)]] :: [[(Double, Double)]]
+    >>> let ls = fmap (PointXY . uncurry Point) <$> xs
+    >>> let anns = zipWith (\w c -> LineA (LineStyle w c Nothing Nothing Nothing Nothing)) [0.015, 0.03, 0.01] palette1
+    >>> let lineChart = zipWith Chart anns ls
+    >>> writeChartSvgHud "other/lineshud.svg" lineChart
+    .
+    ![main example](other/lineshud.svg)
+    .
+    See "Chart" for a broad overview of concepts, and "Chart.Examples" for a variety of practical examples.
+
+category:       charts
 homepage:       https://github.com/tonyday567/chart-svg#readme
 bug-reports:    https://github.com/tonyday567/chart-svg/issues
 author:         Tony Day
@@ -24,99 +40,83 @@
     Chart
     Chart.Bar
     Chart.Examples
-    Chart.Pixel
+    Chart.Reanimate
+    Chart.Surface
     Chart.Render
-    Chart.Page
     Chart.Types
+    Chart.Various
     Data.Colour
     Data.FormatN
+    Data.Path
   hs-source-dirs:
     src
   build-depends:
-    Color >= 0.1.4,
-    attoparsec >= 0.13,
+    Color >= 0.3 && < 0.4,
+    JuicyPixels >= 3.3 && < 3.4,
+    attoparsec >= 0.13 && < 0.14,
     base >=4.7 && <5,
+    cubicbezier >= 0.6 && < 0.7,
+    foldl >= 1.4 && < 1.5,
     generic-lens >= 1.2 && < 3.0,
-    lucid >= 2.9,
-    lens >= 4.0,
-    numhask >= 0.6 && < 0.7,
-    numhask-space >= 0.6 && < 0.7,
-    pretty-simple >= 3.2,
-    scientific >= 0.3,
-    tagsoup >= 0.14,
-    text >= 1.2,
-    time >= 1.9,
-    transformers >= 0.5,
-    web-rep >= 0.7 && < 0.8
+    lens >= 4.0 && < 5,
+    linear >= 1.21 && < 1.22,
+    lucid >= 2.9 && < 2.10,
+    numhask >= 0.7 && < 0.8,
+    numhask-space >= 0.7 && < 0.8,
+    reanimate >= 1.1.1.0 && < 1.2,
+    reanimate-svg >= 0.13 && < 0.14,
+    scientific >= 0.3 && < 0.4,
+    tagsoup >= 0.14 && < 0.15,
+    text >= 1.2 && < 1.3,
+    time >= 1.9 && < 1.10,
+    transformers >= 0.5 && < 0.6,
+    unordered-containers >= 0.2 && < 0.3,
   default-language: Haskell2010
   default-extensions:
-    NegativeLiterals
-    NoImplicitPrelude
-    OverloadedStrings
-    UnicodeSyntax
   ghc-options:
     -Wall
     -Wcompat
     -Wincomplete-record-updates
     -Wincomplete-uni-patterns
     -Wredundant-constraints
+    -fwrite-ide-info
+    -hiedir=.hie
 
-executable examples
-  main-is: examples.hs
+executable reanimate-example
+  main-is: reanimate-example.hs
   hs-source-dirs:
     app
   build-depends:
+    attoparsec >= 0.13 && < 0.14,
+    JuicyPixels >= 3.3.5 && < 3.4,
     base >=4.7 && <5,
+    bytestring >= 0.10 && < 0.11,
     chart-svg,
-    lens >= 4.0,
-    lucid >= 2.9,
-    numhask >= 0.6 && < 0.7,
-    text >= 1.2,
-    transformers >= 0.5,
-    unordered-containers >= 0.2.10,
-    web-rep >= 0.7 && < 0.8
+    concurrency >= 1.11 && < 1.12,
+    foldl >= 1.4 && < 1.5,
+    lucid >= 2.9 && < 2.10,
+    lens >= 4.19 && < 4.20,
+    linear >= 1.21 && < 1.22,
+    numhask >= 0.7 && < 0.8,
+    numhask-space >= 0.7 && < 0.8,
+    reanimate >= 1.1.1.0 && < 1.2,
+    reanimate-svg >= 0.13 && < 0.14,
+    text >= 1.2 && < 1.3,
+    time >= 1.9 && < 1.10,
+    transformers >= 0.5 && < 0.6,
+    unordered-containers >= 0.2 && < 0.3,
+    vector >= 0.12 && < 0.13,
   default-language: Haskell2010
   default-extensions:
-    NegativeLiterals
-    NoImplicitPrelude
-    OverloadedStrings
-    UnicodeSyntax
   ghc-options:
     -Wall
     -Wcompat
     -Wincomplete-record-updates
     -Wincomplete-uni-patterns
     -Wredundant-constraints
-
-executable venn
-  main-is: venn.hs
-  hs-source-dirs:
-    app
-  build-depends:
-    base >=4.7 && <5,
-    containers >= 0.6,
-    chart-svg,
-    generic-lens >= 1.2 && < 3.0,
-    lucid >= 2.9,
-    lens >= 4.0,
-    numhask >= 0.6 && < 0.7,
-    numhask-space >= 0.6 && < 0.7,
-    text >= 1.2,
-    transformers >= 0.5,
-    unordered-containers >= 0.2.10,
-    web-rep >= 0.7 && < 0.8
-  default-language: Haskell2010
-  default-extensions:
-    NegativeLiterals
-    NoImplicitPrelude
-    OverloadedStrings
-    UnicodeSyntax
-  ghc-options:
-    -Wall
-    -Wcompat
-    -Wincomplete-record-updates
-    -Wincomplete-uni-patterns
-    -Wredundant-constraints
+    -funbox-strict-fields
+    -fwrite-ide-info
+    -hiedir=.hie
 
 test-suite test
   type: exitcode-stdio-1.0
@@ -126,18 +126,14 @@
   build-depends:
     base >=4.7 && <5,
     chart-svg,
-    doctest >= 0.16,
-    numhask >= 0.6 && < 0.7
+    doctest >= 0.16 && < 0.18,
+    numhask >= 0.7 && < 0.8,
   default-language: Haskell2010
-  default-extensions:
-    NegativeLiterals
-    NoImplicitPrelude
-    OverloadedStrings
-    UnicodeSyntax
   ghc-options:
     -Wall
     -Wcompat
     -Wincomplete-record-updates
     -Wincomplete-uni-patterns
     -Wredundant-constraints
-    -funbox-strict-fields
+    -fwrite-ide-info
+    -hiedir=.hie
diff --git a/other/arc.svg b/other/arc.svg
new file mode 100644
--- /dev/null
+++ b/other/arc.svg
@@ -0,0 +1,147 @@
+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.6 -0.5331313896679636 1.110448275862069 1.0550727689783084" width="315.74550358381" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="0.9047317470370035" width="0.9341226132563273" x="-0.4341226132563273" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.4341226132563273,0.40473174703700354
+0.5,0.40473174703700354"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.4341226132563273,0.3224834063972759
+0.5,0.3224834063972759"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.4341226132563273,0.24023506575754838
+0.5,0.24023506575754838"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.4341226132563273,0.15798672511782075
+0.5,0.15798672511782075"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.4341226132563273,7.573838447809311e-2
+0.5,7.573838447809311e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.4341226132563273,-6.5099561616344115e-3
+0.5,-6.5099561616344115e-3"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.4341226132563273,-8.875829680136205e-2
+0.5,-8.875829680136205e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.4341226132563273,-0.17100663744108957
+0.5,-0.17100663744108957"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.4341226132563273,-0.2532549780808172
+0.5,-0.2532549780808172"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.4341226132563273,-0.33550331872054473
+0.5,-0.33550331872054473"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.4341226132563273,-0.41775165936027236
+0.5,-0.41775165936027236"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.4341226132563273,-0.5
+0.5,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="0.4178503573690401">-0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="0.3356020167293125">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="0.2533536760895849">0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="0.17110533544985734">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="8.885699481012971e-2">0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="6.6086541704021284e-3">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="-7.56396864693255e-2">0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="-0.15788802710905303">0.6</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="-0.24013636774878067">0.7</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="-0.3223847083885083">0.8</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="-0.4046330490282356">0.9</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="-0.48688138966796357">1</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><g transform="rotate(-90.0, -0.46957095587317516, 0.40473174703700354)"><polyline points="-0.46957095587317516,0.41973174703700356
+-0.46957095587317516,0.38973174703700353"/></g><g transform="rotate(-90.0, -0.46957095587317516, 0.3224834063972759)"><polyline points="-0.46957095587317516,0.3374834063972759
+-0.46957095587317516,0.3074834063972759"/></g><g transform="rotate(-90.0, -0.46957095587317516, 0.24023506575754838)"><polyline points="-0.46957095587317516,0.2552350657575484
+-0.46957095587317516,0.22523506575754837"/></g><g transform="rotate(-90.0, -0.46957095587317516, 0.15798672511782075)"><polyline points="-0.46957095587317516,0.17298672511782076
+-0.46957095587317516,0.14298672511782073"/></g><g transform="rotate(-90.0, -0.46957095587317516, 7.573838447809311e-2)"><polyline points="-0.46957095587317516,9.073838447809311e-2
+-0.46957095587317516,6.073838447809311e-2"/></g><g transform="rotate(-90.0, -0.46957095587317516, -6.5099561616344115e-3)"><polyline points="-0.46957095587317516,8.490043838365588e-3
+-0.46957095587317516,-2.150995616163441e-2"/></g><g transform="rotate(-90.0, -0.46957095587317516, -8.875829680136205e-2)"><polyline points="-0.46957095587317516,-7.375829680136205e-2
+-0.46957095587317516,-0.10375829680136205"/></g><g transform="rotate(-90.0, -0.46957095587317516, -0.17100663744108957)"><polyline points="-0.46957095587317516,-0.15600663744108956
+-0.46957095587317516,-0.18600663744108958"/></g><g transform="rotate(-90.0, -0.46957095587317516, -0.2532549780808172)"><polyline points="-0.46957095587317516,-0.2382549780808172
+-0.46957095587317516,-0.2682549780808172"/></g><g transform="rotate(-90.0, -0.46957095587317516, -0.33550331872054473)"><polyline points="-0.46957095587317516,-0.3205033187205447
+-0.46957095587317516,-0.35050331872054474"/></g><g transform="rotate(-90.0, -0.46957095587317516, -0.41775165936027236)"><polyline points="-0.46957095587317516,-0.40275165936027235
+-0.46957095587317516,-0.4327516593602724"/></g><g transform="rotate(-90.0, -0.46957095587317516, -0.5)"><polyline points="-0.46957095587317516,-0.485
+-0.46957095587317516,-0.515"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="0.9047317470370035" width="4.6706130662816925e-3" x="-0.4578944232074711" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.4341226132563273,0.40473174703700354
+-0.4341226132563273,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.34071035193069454,0.40473174703700354
+-0.34071035193069454,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.24729809060506175,0.40473174703700354
+-0.24729809060506175,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.153885829279429,0.40473174703700354
+-0.153885829279429,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-6.047356795379627e-2,0.40473174703700354
+-6.047356795379627e-2,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="3.2938693371836414e-2,0.40473174703700354
+3.2938693371836414e-2,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.12635095469746926,0.40473174703700354
+0.12635095469746926,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.219763216023102,0.40473174703700354
+0.219763216023102,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.31317547734873474,0.40473174703700354
+0.31317547734873474,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.40658773867436726,0.40473174703700354
+0.40658773867436726,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.5,0.40473174703700354
+0.5,-0.5"/></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.4341226132563273" y="0.5">0</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.34071035193069454" y="0.5">0.1</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.24729809060506175" y="0.5">0.2</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.153885829279429" y="0.5">0.3</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-6.047356795379627e-2" y="0.5">0.4</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="3.2938693371836414e-2" y="0.5">0.5</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.12635095469746926" y="0.5">0.6</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.219763216023102" y="0.5">0.7</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.31317547734873474" y="0.5">0.8</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.40658773867436726" y="0.5">0.9</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.5" y="0.5">1</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="-0.4341226132563273,0.44461187008052117
+-0.4341226132563273,0.41461187008052114"/><polyline points="-0.34071035193069454,0.44461187008052117
+-0.34071035193069454,0.41461187008052114"/><polyline points="-0.24729809060506175,0.44461187008052117
+-0.24729809060506175,0.41461187008052114"/><polyline points="-0.153885829279429,0.44461187008052117
+-0.153885829279429,0.41461187008052114"/><polyline points="-6.047356795379627e-2,0.44461187008052117
+-6.047356795379627e-2,0.41461187008052114"/><polyline points="3.2938693371836414e-2,0.44461187008052117
+3.2938693371836414e-2,0.41461187008052114"/><polyline points="0.12635095469746926,0.44461187008052117
+0.12635095469746926,0.41461187008052114"/><polyline points="0.219763216023102,0.44461187008052117
+0.219763216023102,0.41461187008052114"/><polyline points="0.31317547734873474,0.44461187008052117
+0.31317547734873474,0.41461187008052114"/><polyline points="0.40658773867436726,0.44461187008052117
+0.40658773867436726,0.41461187008052114"/><polyline points="0.5,0.44461187008052117
+0.5,0.41461187008052114"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.5236587351850654e-3" width="0.9341226132563273" x="-0.4341226132563273" y="0.4137790645073736"/></g><g stroke-opacity="0.0" fill-opacity="0.1" stroke="#000000" stroke-width="1.0e-2" fill="#e31a1c"><path d="M 0.5,0.3225 A 0.8510421685496118 0.45342537966528784 60.0 0 1 -0.4341,-0.5"/></g><g stroke-opacity="1.0" stroke="#1f78b4" stroke-width="2.0e-3" fill="none"><polyline points="0.5,0.3224834063972759
+0.49131803315740674,0.32353252021195333
+0.4825189620523863,0.32434913819324973
+0.47360555305057017,0.32493300360225563
+0.46458060846461413,0.3252839328758222
+0.4554469656731719,0.3254018156842713
+0.4462074962288425,0.3252866149660833
+0.4368651049553759,0.32493836693954775
+0.4274227290344157,0.3243571810913775
+0.4178833370820705,0.3235432401422867
+0.4082499282156019,0.3224967999895446
+0.3985255311105239,0.3212181896265231
+0.3887132030484073,0.31970781103926404
+0.37881602895569366,0.31796613908009697
+0.3688371204338158,0.3159937213183496
+0.35877961478093146,0.31379117786819544
+0.3486466740055799,0.3113592011936945
+0.33844148383256867,0.3086985558910873
+0.32816725270140445,0.3058100784484114
+0.3178272107575816,0.3026946769825159
+0.30742460883704825,0.29935333095355476
+0.2969627174441659,0.29578709085705257
+0.2864448257234863,0.2919970778936358
+0.2758742404256673,0.2879844836165354
+0.26525428486785485,0.2837505695569703
+0.2545882978888542,0.27929666682753196
+0.24387963279942393,0.27462417570369146
+0.2331316563280178,0.2697345651835622
+0.22234774756231013,0.26462937252605856
+0.21153129688683336,0.2593102027675914
+0.20068570491706672,0.25377872821745723
+0.18981438143030516,0.2480366879320745
+0.1789207442936509,0.24208588716823765
+0.16800821838945934,0.23592819681555716
+0.15708023453858067,0.22956555280826463
+0.1461402284217339,0.22299995551656865
+0.13519163949935364,0.21623346911775349
+0.12423790993024741,0.20926822094721537
+0.11328248348940584,0.20210640082964398
+0.10232880448530401,0.1947502603905566
+9.138031667703528e-2,0.187202112348403
+8.044046219161738e-2,0.17946432978746407
+6.951268044181369e-2,0.17153934541176952
+5.860040704480318e-2,0.1634296507802741
+4.7707072742050216e-2,0.1551377955235283
+3.6836102320701336e-2,0.14666638654209324
+2.599091353685723e-2,0.13801808718694908
+1.5174916041054254e-2,0.12919561642215677
+4.39151030629481e-3,0.12020174797003447
+-6.355913441037475e-3,0.11103930943911966
+-1.706397628704126e-2,0.10171118143518798
+-2.7729311692603786e-2,9.22202966556126e-2
+-3.834856655181629e-2,8.256963896734354e-2
+-4.8918402246168224e-2,7.276224246880159e-2
+-5.943549569418416e-2,6.280119053597982e-2
+-6.989654039617699e-2,5.268961485305085e-2
+-8.029824747378878e-2,4.243069442778857e-2
+-9.063734670399043e-2,3.20276545921101e-2
+-0.10091058754721594,2.1483765988054848e-2
+-0.11111474016931061,1.0802343539516368e-2
+-0.12124659645696662,-1.3254589944611261e-5
+-0.13130297102633154,-1.095962805288353e-2
+-0.1412807022244708,-2.203333538701746e-2
+-0.15117665312336864,-3.3230895097196456e-2
+-0.16098771250615596,-4.4548786749960656e-2
+-0.17071079584525517,-5.5983452080339724e-2
+-0.18034284627213382,-6.753129611054609e-2
+-0.18988083553836177,-7.918868828021086e-2
+-0.19932176496767223,-9.0951963587806e-2
+-0.20866266639872305,-0.1028174237428946
+-0.2179006031182666,-0.11478133832884774
+-0.22703267078443107,-0.12683994597566073
+-0.23605599833982532,-0.13898945554250142
+-0.24496774891417866,-0.15122604730961775
+-0.25376512071623303,-0.1635458741792304
+-0.26244534791460594,-0.17594506288503375
+-0.27100570150734915,-0.18841971520992284
+-0.2794434901799264,-0.20096590921156576
+-0.28775606115134456,-0.2135797004554335
+-0.29594080100816855,-0.22625712325490366
+-0.3039951365261604,-0.2389941919180425
+-0.31191653547928266,-0.2517869020006802
+-0.3197025074358122,-0.26463123156537827
+-0.32735060454131437,-0.2775231424458985
+-0.33485842228823104,-0.2904585815167743
+-0.3422236002718412,-0.3034334819675847
+-0.34944382293235465,-0.31644376458152945
+-0.3565168202829081,-0.32948533901790766
+-0.36344036862323326,-0.3425541050980907
+-0.37021229123877164,-0.3556459540945901
+-0.376830459085019,-0.36875677002281115
+-0.3832927914568812,-0.38188243093509155
+-0.38959725664283384,-0.39501881021660945
+-0.3957418725636772,-0.4081617778827652
+-0.40172470739568833,-0.42130720187761683
+-0.4075438801779732,-0.4344509493729698
+-0.4131975614038264,-0.4475888880677099
+-0.4186839735959159,-0.46071688748696826
+-0.4240013918651091,-0.473830820280714
+-0.4291481444527659,-0.48692656352136343
+-0.4341226132563273,-0.5"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="3.0e-3" fill="#a6cee3"><rect height="3.0000000000000027e-2" width="3.0000000000000013e-2" x="0.1038406136048169" y="-0.4309747042034927"/></g><g stroke-opacity="1.0" fill-opacity="0.1" stroke="#808080" stroke-width="2.0e-3" fill="#6666cc"><rect height="0.8254018195424235" width="0.9341226132563273" x="-0.4341226132563273" y="-0.5"/></g><g></g></svg>
diff --git a/other/arcflags.svg b/other/arcflags.svg
new file mode 100644
--- /dev/null
+++ b/other/arcflags.svg
@@ -0,0 +1,1241 @@
+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-9.7575e-2 -9.03175 9.110075 9.16925" width="298.0639092619353" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="9.0" width="9.0" x="0.0" y="-9.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.0,-0.0
+9.0,-0.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.0,-1.0
+9.0,-1.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.0,-2.0
+9.0,-2.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.0,-3.0
+9.0,-3.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.0,-4.0
+9.0,-4.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.0,-5.000000000000001
+9.0,-5.000000000000001"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.0,-6.0
+9.0,-6.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.0,-6.999999999999999
+9.0,-6.999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.0,-8.0
+9.0,-8.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.0,-9.0
+9.0,-9.0"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-7.2575e-2" y="1.4499999999999985e-2">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-7.2575e-2" y="-0.9855000000000002">1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-7.2575e-2" y="-1.9855">2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-7.2575e-2" y="-2.9855">3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-7.2575e-2" y="-3.9855">4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-7.2575e-2" y="-4.9855">5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-7.2575e-2" y="-5.985500000000001">6</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-7.2575e-2" y="-6.985499999999999">7</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-7.2575e-2" y="-7.9855">8</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-7.2575e-2" y="-8.9855">9</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><g transform="rotate(-90.0, -4.000000000000001e-2, -0.0)"><polyline points="-4.000000000000001e-2,1.5e-2
+-4.000000000000001e-2,-1.5e-2"/></g><g transform="rotate(-90.0, -4.000000000000001e-2, -1.0)"><polyline points="-4.000000000000001e-2,-0.985
+-4.000000000000001e-2,-1.015"/></g><g transform="rotate(-90.0, -4.000000000000001e-2, -2.0)"><polyline points="-4.000000000000001e-2,-1.985
+-4.000000000000001e-2,-2.015"/></g><g transform="rotate(-90.0, -4.000000000000001e-2, -3.0)"><polyline points="-4.000000000000001e-2,-2.985
+-4.000000000000001e-2,-3.015"/></g><g transform="rotate(-90.0, -4.000000000000001e-2, -4.0)"><polyline points="-4.000000000000001e-2,-3.985
+-4.000000000000001e-2,-4.015"/></g><g transform="rotate(-90.0, -4.000000000000001e-2, -5.000000000000001)"><polyline points="-4.000000000000001e-2,-4.985000000000001
+-4.000000000000001e-2,-5.015000000000001"/></g><g transform="rotate(-90.0, -4.000000000000001e-2, -6.0)"><polyline points="-4.000000000000001e-2,-5.985
+-4.000000000000001e-2,-6.015"/></g><g transform="rotate(-90.0, -4.000000000000001e-2, -6.999999999999999)"><polyline points="-4.000000000000001e-2,-6.984999999999999
+-4.000000000000001e-2,-7.014999999999999"/></g><g transform="rotate(-90.0, -4.000000000000001e-2, -8.0)"><polyline points="-4.000000000000001e-2,-7.985
+-4.000000000000001e-2,-8.015"/></g><g transform="rotate(-90.0, -4.000000000000001e-2, -9.0)"><polyline points="-4.000000000000001e-2,-8.985
+-4.000000000000001e-2,-9.015"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="9.0" width="5.0000000000000044e-3" x="-2.7500000000000004e-2" y="-9.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.0,-0.0
+0.0,-9.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="1.0,-0.0
+1.0,-9.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="2.0,-0.0
+2.0,-9.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="3.0,-0.0
+3.0,-9.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="3.9999999999999996,-0.0
+3.9999999999999996,-9.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="5.0,-0.0
+5.0,-9.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="6.000000000000001,-0.0
+6.000000000000001,-9.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="6.999999999999999,-0.0
+6.999999999999999,-9.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="8.0,-0.0
+8.0,-9.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="9.0,-0.0
+9.0,-9.0"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.0" y="0.11124999999999999">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="1.0" y="0.11124999999999999">1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="2.0" y="0.11124999999999999">2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="3.0" y="0.11124999999999999">3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="3.9999999999999996" y="0.11124999999999999">4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="5.0" y="0.11124999999999999">5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="6.000000000000001" y="0.11124999999999999">6</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="6.999999999999999" y="0.11124999999999999">7</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="8.0" y="0.11124999999999999">8</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="9.0" y="0.11124999999999999">9</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="0.0,4.2499999999999996e-2
+0.0,1.2499999999999997e-2"/><polyline points="1.0,4.2499999999999996e-2
+1.0,1.2499999999999997e-2"/><polyline points="2.0,4.2499999999999996e-2
+2.0,1.2499999999999997e-2"/><polyline points="3.0,4.2499999999999996e-2
+3.0,1.2499999999999997e-2"/><polyline points="3.9999999999999996,4.2499999999999996e-2
+3.9999999999999996,1.2499999999999997e-2"/><polyline points="5.0,4.2499999999999996e-2
+5.0,1.2499999999999997e-2"/><polyline points="6.000000000000001,4.2499999999999996e-2
+6.000000000000001,1.2499999999999997e-2"/><polyline points="6.999999999999999,4.2499999999999996e-2
+6.999999999999999,1.2499999999999997e-2"/><polyline points="8.0,4.2499999999999996e-2
+8.0,1.2499999999999997e-2"/><polyline points="9.0,4.2499999999999996e-2
+9.0,1.2499999999999997e-2"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.9999999999999906e-3" width="9.0" x="0.0" y="9.999999999999995e-3"/></g><g></g><g fill-opacity="1.0" font-size="0.6" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text transform="rotate(-90.0, 0.5549999999999999, -3.0)" x="0.5549999999999999" y="-3.0">Sweep</text></g><g></g><g fill-opacity="1.0" font-size="0.4" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text transform="rotate(-90.0, 1.7149999999999999, -1.5)" x="1.7149999999999999" y="-1.5">True</text></g><g></g><g fill-opacity="1.0" font-size="0.4" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text transform="rotate(-90.0, 1.7149999999999999, -4.52)" x="1.7149999999999999" y="-4.52">False</text></g><g stroke-opacity="0.2" stroke="#000000" stroke-width="2.0e-2" fill="none"><polyline points="5.409999999999999,-2.01
+5.408026728428272,-2.0727905195293133
+5.402114701314479,-2.135333233564304
+5.392287250728689,-2.197381314585725
+5.378583161128632,-2.258689887164855
+5.361056516295154,-2.3190169943749472
+5.33977648588825,-2.378124552684678
+5.31482705246602,-2.4357792915650722
+5.286306680043863,-2.4917536741017154
+5.254327925502015,-2.545826794978996
+5.219016994374947,-2.597785252292473
+5.180513242775788,-2.6474239897486895
+5.138968627421411,-2.6945471059286885
+5.094547105928688,-2.738968627421412
+5.04742398974869,-2.780513242775789
+4.9977852522924735,-2.8190169943749472
+4.945826794978998,-2.8543279255020155
+4.8917536741017145,-2.8863066800438633
+4.835779291565073,-2.9148270524660194
+4.778124552684679,-2.9397764858882516
+4.719016994374946,-2.9610565162951534
+4.658689887164854,-2.978583161128631
+4.597381314585725,-2.9922872507286886
+4.535333233564303,-3.002114701314478
+4.472790519529314,-3.008026728428272
+4.409999999999999,-3.0099999999999993
+4.347209480470687,-3.008026728428272
+4.284666766435696,-3.002114701314478
+4.222618685414275,-2.9922872507286886
+4.161310112835144,-2.978583161128631
+4.100983005625053,-2.9610565162951534
+4.041875447315322,-2.9397764858882516
+3.984220708434927,-2.9148270524660194
+3.9282463258982845,-2.886306680043863
+3.8741732050210027,-2.8543279255020155
+3.822214747707527,-2.8190169943749472
+3.7725760102513104,-2.7805132427757893
+3.725452894071311,-2.738968627421412
+3.6810313725785884,-2.6945471059286885
+3.6394867572242107,-2.6474239897486895
+3.6009830056250527,-2.597785252292473
+3.5656720744979844,-2.545826794978997
+3.533693319956136,-2.4917536741017154
+3.5051729475339806,-2.4357792915650722
+3.480223514111748,-2.378124552684678
+3.458943483704847,-2.3190169943749472
+3.4414168388713695,-2.258689887164855
+3.4277127492713118,-2.197381314585725
+3.417885298685522,-2.135333233564304
+3.4119732715717284,-2.0727905195293133
+3.41,-2.0100000000000002
+3.4119732715717284,-1.9472094804706868
+3.417885298685522,-1.8846667664356958
+3.4277127492713118,-1.8226186854142752
+3.4414168388713686,-1.7613101128351452
+3.458943483704847,-1.7009830056250523
+3.480223514111748,-1.6418754473153219
+3.5051729475339797,-1.5842207084349278
+3.5336933199561367,-1.5282463258982848
+3.5656720744979844,-1.4741732050210037
+3.6009830056250527,-1.4222147477075269
+3.6394867572242107,-1.3725760102513103
+3.6810313725785884,-1.3254528940713115
+3.7254528940713114,-1.2810313725785882
+3.7725760102513104,-1.2394867572242108
+3.822214747707527,-1.200983005625053
+3.874173205021004,-1.1656720744979847
+3.9282463258982845,-1.1336933199561363
+3.9842207084349277,-1.1051729475339802
+4.041875447315322,-1.0802235141117484
+4.100983005625052,-1.0589434837048466
+4.161310112835144,-1.0414168388713687
+4.222618685414275,-1.0277127492713114
+4.284666766435695,-1.0178852986855222
+4.347209480470687,-1.0119732715717284
+4.409999999999999,-1.01
+4.472790519529313,-1.0119732715717284
+4.535333233564303,-1.0178852986855222
+4.597381314585725,-1.0277127492713114
+4.658689887164854,-1.041416838871369
+4.719016994374946,-1.0589434837048464
+4.778124552684677,-1.0802235141117484
+4.835779291565071,-1.1051729475339802
+4.891753674101717,-1.1336933199561368
+4.945826794978998,-1.1656720744979847
+4.9977852522924735,-1.2009830056250523
+5.047423989748689,-1.2394867572242103
+5.094547105928688,-1.2810313725785882
+5.138968627421411,-1.325452894071311
+5.180513242775791,-1.3725760102513103
+5.219016994374947,-1.4222147477075269
+5.254327925502015,-1.4741732050210026
+5.286306680043863,-1.5282463258982848
+5.314827052466018,-1.584220708434927
+5.33977648588825,-1.641875447315322
+5.361056516295154,-1.7009830056250523
+5.378583161128632,-1.7613101128351454
+5.392287250728689,-1.8226186854142754
+5.402114701314479,-1.8846667664356953
+5.408026728428272,-1.9472094804706868
+5.409999999999999,-2.01"/></g><g stroke-opacity="0.2" stroke="#000000" stroke-width="2.0e-2" fill="none"><polyline points="4.409999999999999,-1.01
+4.408026728428271,-1.0727905195293135
+4.402114701314478,-1.1353332335643043
+4.392287250728688,-1.1973813145857246
+4.378583161128631,-1.258689887164855
+4.361056516295152,-1.3190169943749475
+4.339776485888251,-1.3781245526846777
+4.314827052466019,-1.4357792915650727
+4.286306680043864,-1.4917536741017154
+4.2543279255020146,-1.5458267949789968
+4.219016994374948,-1.597785252292473
+4.180513242775789,-1.6474239897486895
+4.138968627421411,-1.6945471059286885
+4.094547105928688,-1.7389686274214113
+4.047423989748689,-1.7805132427757893
+3.997785252292472,-1.8190169943749472
+3.9458267949789962,-1.8543279255020149
+3.891753674101715,-1.8863066800438635
+3.835779291565072,-1.9148270524660194
+3.7781245526846776,-1.9397764858882511
+3.7190169943749476,-1.961056516295153
+3.658689887164855,-1.9785831611286309
+3.597381314585724,-1.9922872507286882
+3.535333233564304,-2.0021147013144778
+3.4727905195293136,-2.0080267284282716
+3.41,-2.01
+3.3472094804706867,-2.0080267284282716
+3.2846667664356963,-2.0021147013144778
+3.2226186854142753,-1.9922872507286882
+3.1613101128351446,-1.9785831611286309
+3.1009830056250527,-1.9610565162951534
+3.0418754473153222,-1.9397764858882516
+2.9842207084349273,-1.9148270524660194
+2.9282463258982845,-1.8863066800438635
+2.874173205021003,-1.8543279255020149
+2.8222147477075272,-1.8190169943749475
+2.7725760102513104,-1.7805132427757893
+2.725452894071311,-1.7389686274214113
+2.6810313725785884,-1.694547105928689
+2.6394867572242102,-1.64742398974869
+2.6009830056250527,-1.597785252292473
+2.565672074497985,-1.5458267949789968
+2.533693319956136,-1.4917536741017152
+2.5051729475339806,-1.435779291565073
+2.4802235141117484,-1.3781245526846782
+2.4589434837048465,-1.3190169943749475
+2.4414168388713686,-1.258689887164855
+2.4277127492713113,-1.1973813145857246
+2.417885298685522,-1.135333233564304
+2.411973271571729,-1.0727905195293137
+2.41,-1.0100000000000002
+2.411973271571729,-0.9472094804706866
+2.417885298685522,-0.8846667664356958
+2.4277127492713113,-0.8226186854142752
+2.4414168388713686,-0.7613101128351455
+2.4589434837048465,-0.7009830056250523
+2.4802235141117484,-0.6418754473153221
+2.50517294753398,-0.5842207084349278
+2.533693319956137,-0.5282463258982846
+2.565672074497985,-0.4741732050210036
+2.6009830056250527,-0.422214747707527
+2.6394867572242102,-0.3725760102513104
+2.6810313725785884,-0.3254528940713116
+2.725452894071312,-0.28103137257858846
+2.7725760102513104,-0.23948675722421062
+2.8222147477075272,-0.20098300562505264
+2.8741732050210036,-0.16567207449798468
+2.9282463258982845,-0.13369331995613642
+2.984220708434928,-0.10517294753398021
+3.0418754473153222,-8.022351411174855e-2
+3.1009830056250522,-5.894348370484648e-2
+3.161310112835145,-4.141683887136882e-2
+3.2226186854142753,-2.7712749271311288e-2
+3.284666766435696,-1.7885298685522244e-2
+3.3472094804706867,-1.197327157172845e-2
+3.4099999999999993,-1.0000000000000009e-2
+3.4727905195293127,-1.197327157172845e-2
+3.535333233564304,-1.7885298685522133e-2
+3.5973813145857236,-2.7712749271311288e-2
+3.658689887164855,-4.141683887136893e-2
+3.7190169943749467,-5.894348370484637e-2
+3.778124552684677,-8.022351411174847e-2
+3.8357792915650712,-0.10517294753398007
+3.891753674101715,-0.13369331995613665
+3.9458267949789962,-0.1656720744979849
+3.997785252292472,-0.20098300562505242
+4.047423989748689,-0.2394867572242104
+4.094547105928688,-0.28103137257858846
+4.138968627421411,-0.32545289407131106
+4.180513242775789,-0.3725760102513104
+4.219016994374947,-0.42221474770752676
+4.2543279255020146,-0.4741732050210029
+4.286306680043864,-0.5282463258982847
+4.314827052466019,-0.5842207084349271
+4.339776485888251,-0.6418754473153222
+4.361056516295152,-0.7009830056250523
+4.378583161128631,-0.7613101128351455
+4.392287250728688,-0.8226186854142753
+4.402114701314478,-0.8846667664356952
+4.408026728428271,-0.9472094804706869
+4.409999999999999,-1.0099999999999998"/></g><g stroke-opacity="0.5" stroke="#ff00ff" stroke-width="5.0e-2" fill="none"><polyline points="3.41,-2.01
+3.4257073173118204,-2.0098766324816606
+3.441410759078128,-2.0095065603657316
+3.4571064507096425,-2.00888987496197
+3.4727905195293136,-2.0080267284282716
+3.4884590957278454,-2.006917333733128
+3.504108313318514,-2.0055619646030802
+3.519734311091045,-2.0039609554551796
+3.535333233564304,-2.0021147013144778
+3.550901231937582,-2.0000236577165573
+3.5664344650402304,-1.9976883405951376
+3.58192910027941,-1.9951093261547737
+3.597381314585724,-1.9922872507286882
+3.6127872953565126,-1.9892228106217655
+3.628143241396543,-1.9859167619387472
+3.643445363855905,-1.9823699203976766
+3.658689887164855,-1.9785831611286309
+3.6738730499653722,-1.974557418457798
+3.6889911060392286,-1.970293685676943
+3.704040325232304,-1.9657930147983298
+3.7190169943749476,-1.961056516295153
+3.7339174181981494,-1.9560853588275449
+3.748737920245291,-1.950880768954225
+3.7634748437792567,-1.9454440308298668
+3.7781245526846776,-1.9397764858882511
+3.7926834323650898,-1.9338795325112867
+3.80714789063478,-1.9277546256839808
+3.821514358605109,-1.921403276635445
+3.835779291565072,-1.9148270524660194
+3.8499391698559156,-1.9080275757606153
+3.8639904997395473,-1.9010065241883676
+3.877929814260573,-1.8937656300886934
+3.891753674101715,-1.8863066800438635
+3.905458668432407,-1.878631514438191
+3.9190414157503715,-1.8707420270039437
+3.932498564715948,-1.8626401643540924
+3.9458267949789962,-1.8543279255020149
+3.959022817998131,-1.8458073613682704
+3.97208337785213,-1.837080574274562
+3.9850052520432784,-1.8281497174250232
+3.997785252292472,-1.8190169943749472
+4.010420225325884,-1.8096846584870905
+4.022907053652976,-1.8001550123756904
+4.035242656335705,-1.7904304073383297
+4.047423989748689,-1.7805132427757893
+4.059448048330183,-1.7704059656000308
+4.0713118653236515,-1.7601110696304594
+4.0830125135097735,-1.7496310949786096
+4.094547105928688,-1.7389686274214111
+4.105912796592314,-1.7281262977631888
+4.117106781186547,-1.7171067811865472
+4.128126297763188,-1.7059127965923144
+4.138968627421411,-1.6945471059286885
+4.149631094978609,-1.683012513509773
+4.160111069630459,-1.6713118653236516
+4.170405965600031,-1.6594480483301837
+4.180513242775789,-1.6474239897486895
+4.190430407338329,-1.635242656335705
+4.20015501237569,-1.6229070536529764
+4.20968465848709,-1.6104202253258841
+4.219016994374948,-1.597785252292473
+4.2281497174250235,-1.5850052520432785
+4.237080574274562,-1.5720833778521306
+4.24580736136827,-1.5590228179981316
+4.2543279255020146,-1.5458267949789968
+4.262640164354092,-1.5324985647159486
+4.270742027003943,-1.5190414157503709
+4.2786315144381915,-1.5054586684324076
+4.286306680043864,-1.4917536741017152
+4.293765630088693,-1.4779298142605732
+4.3010065241883675,-1.4639904997395465
+4.308027575760615,-1.449939169855915
+4.314827052466019,-1.4357792915650727
+4.321403276635445,-1.421514358605109
+4.327754625683981,-1.4071478906347805
+4.333879532511286,-1.3926834323650896
+4.339776485888251,-1.3781245526846782
+4.345444030829867,-1.3634748437792572
+4.350880768954225,-1.3487379202452912
+4.356085358827545,-1.3339174181981495
+4.361056516295152,-1.3190169943749475
+4.36579301479833,-1.304040325232304
+4.370293685676943,-1.2889911060392294
+4.3745574184577976,-1.2738730499653725
+4.378583161128631,-1.2586898871648546
+4.382369920397676,-1.2434453638559053
+4.385916761938748,-1.2281432413965425
+4.3892228106217654,-1.2127872953565124
+4.392287250728688,-1.1973813145857246
+4.395109326154774,-1.1819291002794095
+4.3976883405951375,-1.166434465040231
+4.400023657716557,-1.1509012319375826
+4.402114701314478,-1.1353332335643043
+4.4039609554551795,-1.1197343110910454
+4.40556196460308,-1.1041083133185143
+4.406917333733127,-1.088459095727845
+4.408026728428271,-1.0727905195293135
+4.40888987496197,-1.0571064507096426
+4.409506560365731,-1.0414107590781283
+4.4098766324816605,-1.0257073173118205
+4.409999999999999,-1.01"/></g><g stroke-opacity="0.5" fill-opacity="0.3" stroke="#000000" stroke-width="1.0e-2" fill="#ff00ff"><path d="M 4.4100,-2.01 L 3.41,-2.01 A 1.0 1.0 -0.0 0 1 4.4100,-1.01 L 4.4100,-2.01"/></g><g stroke-opacity="0.2" stroke="#000000" stroke-width="2.0e-2" fill="none"><polyline points="5.409999999999999,-5.049999999999999
+5.408026728428272,-5.112790519529312
+5.402114701314479,-5.175333233564305
+5.392287250728689,-5.237381314585724
+5.378583161128632,-5.298689887164853
+5.361056516295154,-5.359016994374947
+5.33977648588825,-5.418124552684677
+5.31482705246602,-5.475779291565072
+5.286306680043863,-5.531753674101714
+5.254327925502015,-5.5858267949789955
+5.219016994374947,-5.637785252292471
+5.180513242775788,-5.68742398974869
+5.138968627421411,-5.734547105928687
+5.094547105928688,-5.778968627421411
+5.04742398974869,-5.820513242775789
+4.9977852522924735,-5.859016994374946
+4.945826794978998,-5.894327925502013
+4.8917536741017145,-5.926306680043862
+4.835779291565073,-5.954827052466019
+4.778124552684679,-5.979776485888251
+4.719016994374946,-6.001056516295152
+4.658689887164854,-6.018583161128629
+4.597381314585725,-6.032287250728689
+4.535333233564303,-6.042114701314477
+4.472790519529314,-6.04802672842827
+4.409999999999999,-6.05
+4.347209480470687,-6.04802672842827
+4.284666766435696,-6.042114701314477
+4.222618685414275,-6.032287250728689
+4.161310112835144,-6.018583161128629
+4.100983005625053,-6.001056516295152
+4.041875447315322,-5.979776485888251
+3.984220708434927,-5.954827052466019
+3.9282463258982845,-5.926306680043862
+3.8741732050210027,-5.894327925502013
+3.822214747707527,-5.859016994374946
+3.7725760102513104,-5.820513242775789
+3.725452894071311,-5.778968627421411
+3.6810313725785884,-5.734547105928687
+3.6394867572242107,-5.68742398974869
+3.6009830056250527,-5.637785252292471
+3.5656720744979844,-5.5858267949789955
+3.533693319956136,-5.531753674101714
+3.5051729475339806,-5.475779291565072
+3.480223514111748,-5.418124552684677
+3.458943483704847,-5.359016994374947
+3.4414168388713695,-5.298689887164853
+3.4277127492713118,-5.237381314585724
+3.417885298685522,-5.175333233564303
+3.4119732715717284,-5.112790519529312
+3.41,-5.049999999999999
+3.4119732715717284,-4.9872094804706855
+3.417885298685522,-4.924666766435695
+3.4277127492713118,-4.862618685414275
+3.4414168388713686,-4.801310112835145
+3.458943483704847,-4.740983005625051
+3.480223514111748,-4.6818754473153215
+3.5051729475339797,-4.624220708434927
+3.5336933199561367,-4.568246325898284
+3.5656720744979844,-4.514173205021003
+3.6009830056250527,-4.4622147477075265
+3.6394867572242107,-4.41257601025131
+3.6810313725785884,-4.3654528940713115
+3.7254528940713114,-4.321031372578588
+3.7725760102513104,-4.27948675722421
+3.822214747707527,-4.240983005625052
+3.874173205021004,-4.2056720744979845
+3.9282463258982845,-4.173693319956136
+3.9842207084349277,-4.14517294753398
+4.041875447315322,-4.120223514111748
+4.100983005625052,-4.098943483704846
+4.161310112835144,-4.081416838871369
+4.222618685414275,-4.067712749271311
+4.284666766435695,-4.057885298685521
+4.347209480470687,-4.051973271571728
+4.409999999999999,-4.05
+4.472790519529313,-4.051973271571728
+4.535333233564303,-4.057885298685521
+4.597381314585725,-4.067712749271311
+4.658689887164854,-4.081416838871369
+4.719016994374946,-4.098943483704846
+4.778124552684677,-4.120223514111748
+4.835779291565071,-4.14517294753398
+4.891753674101717,-4.173693319956136
+4.945826794978998,-4.2056720744979845
+4.9977852522924735,-4.240983005625052
+5.047423989748689,-4.27948675722421
+5.094547105928688,-4.321031372578588
+5.138968627421411,-4.365452894071311
+5.180513242775791,-4.41257601025131
+5.219016994374947,-4.4622147477075265
+5.254327925502015,-4.514173205021002
+5.286306680043863,-4.568246325898285
+5.314827052466018,-4.624220708434927
+5.33977648588825,-4.6818754473153215
+5.361056516295154,-4.740983005625051
+5.378583161128632,-4.801310112835145
+5.392287250728689,-4.862618685414275
+5.402114701314479,-4.924666766435694
+5.408026728428272,-4.9872094804706855
+5.409999999999999,-5.049999999999999"/></g><g stroke-opacity="0.2" stroke="#000000" stroke-width="2.0e-2" fill="none"><polyline points="4.409999999999999,-4.05
+4.408026728428271,-4.112790519529312
+4.402114701314478,-4.175333233564304
+4.392287250728688,-4.237381314585725
+4.378583161128631,-4.298689887164854
+4.361056516295152,-4.359016994374947
+4.339776485888251,-4.418124552684677
+4.314827052466019,-4.475779291565072
+4.286306680043864,-4.531753674101715
+4.2543279255020146,-4.585826794978996
+4.219016994374948,-4.637785252292472
+4.180513242775789,-4.687423989748689
+4.138968627421411,-4.734547105928688
+4.094547105928688,-4.77896862742141
+4.047423989748689,-4.820513242775788
+3.997785252292472,-4.859016994374947
+3.9458267949789962,-4.894327925502014
+3.891753674101715,-4.926306680043863
+3.835779291565072,-4.954827052466019
+3.7781245526846776,-4.97977648588825
+3.7190169943749476,-5.0010565162951535
+3.658689887164855,-5.01858316112863
+3.597381314585724,-5.032287250728688
+3.535333233564304,-5.042114701314477
+3.4727905195293136,-5.048026728428271
+3.41,-5.049999999999999
+3.3472094804706867,-5.048026728428271
+3.2846667664356963,-5.042114701314477
+3.2226186854142753,-5.032287250728688
+3.1613101128351446,-5.01858316112863
+3.1009830056250527,-5.0010565162951535
+3.0418754473153222,-4.97977648588825
+2.9842207084349273,-4.954827052466019
+2.9282463258982845,-4.926306680043863
+2.874173205021003,-4.894327925502014
+2.8222147477075272,-4.859016994374947
+2.7725760102513104,-4.820513242775788
+2.725452894071311,-4.77896862742141
+2.6810313725785884,-4.734547105928688
+2.6394867572242102,-4.687423989748689
+2.6009830056250527,-4.637785252292473
+2.565672074497985,-4.585826794978996
+2.533693319956136,-4.531753674101715
+2.5051729475339806,-4.475779291565073
+2.4802235141117484,-4.418124552684677
+2.4589434837048465,-4.359016994374947
+2.4414168388713686,-4.298689887164854
+2.4277127492713113,-4.237381314585724
+2.417885298685522,-4.175333233564304
+2.411973271571729,-4.112790519529312
+2.41,-4.05
+2.411973271571729,-3.9872094804706864
+2.417885298685522,-3.9246667664356956
+2.4277127492713113,-3.8626186854142754
+2.4414168388713686,-3.8013101128351443
+2.4589434837048465,-3.7409830056250515
+2.4802235141117484,-3.681875447315322
+2.50517294753398,-3.624220708434927
+2.533693319956137,-3.568246325898284
+2.565672074497985,-3.5141732050210033
+2.6009830056250527,-3.4622147477075265
+2.6394867572242102,-3.4125760102513096
+2.6810313725785884,-3.365452894071312
+2.725452894071312,-3.3210313725785885
+2.7725760102513104,-3.27948675722421
+2.8222147477075272,-3.2409830056250524
+2.8741732050210036,-3.205672074497984
+2.9282463258982845,-3.1736933199561363
+2.984220708434928,-3.1451729475339794
+3.0418754473153222,-3.120223514111748
+3.1009830056250522,-3.098943483704846
+3.161310112835145,-3.0814168388713687
+3.2226186854142753,-3.067712749271311
+3.284666766435696,-3.0578852986855214
+3.3472094804706867,-3.0519732715717285
+3.4099999999999993,-3.05
+3.4727905195293127,-3.0519732715717285
+3.535333233564304,-3.0578852986855214
+3.5973813145857236,-3.067712749271311
+3.658689887164855,-3.0814168388713687
+3.7190169943749467,-3.098943483704846
+3.778124552684677,-3.120223514111748
+3.8357792915650712,-3.1451729475339794
+3.891753674101715,-3.1736933199561363
+3.9458267949789962,-3.205672074497984
+3.997785252292472,-3.2409830056250524
+4.047423989748689,-3.27948675722421
+4.094547105928688,-3.3210313725785885
+4.138968627421411,-3.3654528940713107
+4.180513242775789,-3.4125760102513096
+4.219016994374947,-3.4622147477075265
+4.2543279255020146,-3.514173205021002
+4.286306680043864,-3.568246325898284
+4.314827052466019,-3.624220708434927
+4.339776485888251,-3.681875447315322
+4.361056516295152,-3.7409830056250524
+4.378583161128631,-3.8013101128351443
+4.392287250728688,-3.8626186854142754
+4.402114701314478,-3.9246667664356947
+4.408026728428271,-3.9872094804706864
+4.409999999999999,-4.049999999999999"/></g><g stroke-opacity="0.5" stroke="#00ff00" stroke-width="5.0e-2" fill="none"><polyline points="3.41,-5.049999999999999
+3.410123367518339,-5.0342926826881795
+3.4104934396342688,-5.01858924092187
+3.4111101250380296,-5.002893549290356
+3.4119732715717284,-4.9872094804706855
+3.4130826662668725,-4.971540904272154
+3.4144380353969193,-4.955891686681486
+3.4160390445448203,-4.940265688908953
+3.417885298685522,-4.924666766435694
+3.4199763422834426,-4.9090987680624165
+3.4223116594048624,-4.893565534959769
+3.4248906738452267,-4.87807089972059
+3.4277127492713118,-4.862618685414275
+3.430777189378234,-4.8472127046434865
+3.4340832380612527,-4.831856758603457
+3.437630079602324,-4.816554636144094
+3.4414168388713695,-4.801310112835145
+3.445442581542202,-4.7861269500346255
+3.4497063143230573,-4.77100889396077
+3.4542069852016692,-4.755959674767695
+3.458943483704847,-4.7409830056250515
+3.463914641172454,-4.72608258180185
+3.4691192310457746,-4.711262079754708
+3.4745559691701327,-4.6965251562207415
+3.480223514111748,-4.6818754473153215
+3.486120467488713,-4.667316567634909
+3.4922453743160182,-4.652852109365218
+3.4985967233645545,-4.638485641394891
+3.5051729475339806,-4.624220708434927
+3.511972424239384,-4.610060830144084
+3.5189934758116315,-4.596009500260453
+3.5262343699113066,-4.5820701857394255
+3.533693319956136,-4.568246325898285
+3.541368485561809,-4.554541331567592
+3.5492579729960565,-4.540958584249628
+3.557359835645908,-4.52750143528405
+3.5656720744979844,-4.514173205021003
+3.5741926386317298,-4.5009771820018685
+3.5829194257254384,-4.487916622147869
+3.591850282574977,-4.474994747956721
+3.6009830056250527,-4.4622147477075265
+3.6103153415129094,-4.449579774674115
+3.61984498762431,-4.437092946347023
+3.62956959266167,-4.424757343664295
+3.6394867572242107,-4.41257601025131
+3.649594034399969,-4.400551951669816
+3.6598889303695397,-4.3886881346763476
+3.6703689050213906,-4.376987486490226
+3.6810313725785884,-4.365452894071311
+3.6918737022368107,-4.354087203407685
+3.7028932188134527,-4.342893218813452
+3.7140872034076855,-4.331873702236811
+3.725452894071311,-4.321031372578588
+3.736987486490227,-4.31036890502139
+3.7486881346763483,-4.29988893036954
+3.7605519516698163,-4.289594034399968
+3.7725760102513104,-4.27948675722421
+3.7847573436642947,-4.26956959266167
+3.7970929463470235,-4.259844987624309
+3.8095797746741162,-4.250315341512909
+3.822214747707527,-4.240983005625052
+3.834994747956721,-4.231850282574976
+3.8479166221478693,-4.222919425725438
+3.8609771820018683,-4.214192638631729
+3.874173205021004,-4.2056720744979845
+3.887501435284051,-4.197359835645908
+3.900958584249629,-4.189257972996056
+3.9145413315675928,-4.1813684855618085
+3.9282463258982845,-4.1736933199561355
+3.9420701857394262,-4.166234369911306
+3.956009500260453,-4.158993475811632
+3.970060830144084,-4.151972424239384
+3.984220708434927,-4.14517294753398
+3.998485641394891,-4.138596723364555
+4.01285210936522,-4.132245374316018
+4.02731656763491,-4.126120467488713
+4.041875447315322,-4.120223514111748
+4.056525156220743,-4.114555969170132
+4.0712620797547086,-4.109119231045774
+4.0860825818018505,-4.103914641172454
+4.100983005625053,-4.098943483704846
+4.115959674767696,-4.094206985201669
+4.131008893960771,-4.089706314323056
+4.146126950034627,-4.0854425815422015
+4.161310112835144,-4.081416838871369
+4.176554636144094,-4.077630079602323
+4.191856758603457,-4.074083238061252
+4.207212704643488,-4.070777189378234
+4.222618685414275,-4.067712749271311
+4.23807089972059,-4.064890673845226
+4.253565534959769,-4.062311659404862
+4.269098768062417,-4.059976342283442
+4.284666766435696,-4.057885298685521
+4.300265688908954,-4.05603904454482
+4.315891686681486,-4.054438035396919
+4.331540904272154,-4.053082666266872
+4.347209480470687,-4.051973271571728
+4.362893549290357,-4.051110125038029
+4.378589240921872,-4.050493439634268
+4.394292682688178,-4.050123367518339
+4.409999999999999,-4.05"/></g><g stroke-opacity="0.5" fill-opacity="0.3" stroke="#000000" stroke-width="1.0e-2" fill="#00ff00"><path d="M 4.4100,-5.0500 L 3.41,-5.0500 A 1.0 1.0 -0.0 0 0 4.4100,-4.05 L 4.4100,-5.0500"/></g><g></g><g fill-opacity="1.0" font-size="0.4" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="3.8999999999999995" y="-6.989999999999999">False</text></g><g stroke-opacity="0.2" stroke="#000000" stroke-width="2.0e-2" fill="none"><polyline points="8.905,-2.01
+8.903026728428271,-2.0727905195293133
+8.897114701314477,-2.135333233564304
+8.887287250728688,-2.197381314585725
+8.87358316112863,-2.258689887164855
+8.856056516295153,-2.3190169943749472
+8.83477648588825,-2.378124552684678
+8.80982705246602,-2.4357792915650722
+8.781306680043864,-2.4917536741017154
+8.749327925502014,-2.545826794978996
+8.714016994374946,-2.597785252292473
+8.67551324277579,-2.6474239897486895
+8.633968627421412,-2.6945471059286885
+8.58954710592869,-2.738968627421412
+8.54242398974869,-2.780513242775789
+8.492785252292473,-2.8190169943749472
+8.440826794978996,-2.8543279255020155
+8.386753674101714,-2.8863066800438633
+8.330779291565072,-2.9148270524660194
+8.273124552684678,-2.9397764858882516
+8.214016994374946,-2.9610565162951534
+8.153689887164854,-2.978583161128631
+8.092381314585724,-2.9922872507286886
+8.030333233564303,-3.002114701314478
+7.967790519529312,-3.008026728428272
+7.9049999999999985,-3.0099999999999993
+7.842209480470687,-3.008026728428272
+7.779666766435697,-3.002114701314478
+7.717618685414274,-2.9922872507286886
+7.656310112835145,-2.978583161128631
+7.595983005625053,-2.9610565162951534
+7.536875447315322,-2.9397764858882516
+7.479220708434926,-2.9148270524660194
+7.423246325898283,-2.886306680043863
+7.369173205021002,-2.8543279255020155
+7.317214747707526,-2.8190169943749472
+7.26757601025131,-2.7805132427757893
+7.220452894071311,-2.738968627421412
+7.176031372578589,-2.6945471059286885
+7.13448675722421,-2.6474239897486895
+7.095983005625052,-2.597785252292473
+7.060672074497984,-2.545826794978997
+7.028693319956136,-2.4917536741017154
+7.00017294753398,-2.4357792915650722
+6.975223514111749,-2.378124552684678
+6.953943483704847,-2.3190169943749472
+6.936416838871368,-2.258689887164855
+6.9227127492713105,-2.197381314585725
+6.912885298685521,-2.135333233564304
+6.9069732715717285,-2.0727905195293133
+6.905,-2.0100000000000002
+6.9069732715717285,-1.9472094804706868
+6.912885298685521,-1.8846667664356958
+6.9227127492713105,-1.8226186854142752
+6.936416838871368,-1.7613101128351452
+6.953943483704847,-1.7009830056250523
+6.975223514111749,-1.6418754473153219
+7.000172947533979,-1.5842207084349278
+7.028693319956136,-1.5282463258982848
+7.060672074497984,-1.4741732050210037
+7.095983005625052,-1.4222147477075269
+7.13448675722421,-1.3725760102513103
+7.176031372578587,-1.3254528940713115
+7.220452894071311,-1.2810313725785882
+7.26757601025131,-1.2394867572242108
+7.317214747707526,-1.200983005625053
+7.369173205021002,-1.1656720744979847
+7.423246325898283,-1.1336933199561363
+7.4792207084349265,-1.1051729475339802
+7.536875447315322,-1.0802235141117484
+7.595983005625051,-1.0589434837048466
+7.656310112835145,-1.0414168388713687
+7.717618685414274,-1.0277127492713114
+7.779666766435694,-1.0178852986855222
+7.842209480470687,-1.0119732715717284
+7.9049999999999985,-1.01
+7.967790519529312,-1.0119732715717284
+8.030333233564303,-1.0178852986855222
+8.092381314585724,-1.0277127492713114
+8.153689887164854,-1.041416838871369
+8.214016994374946,-1.0589434837048464
+8.273124552684676,-1.0802235141117484
+8.330779291565069,-1.1051729475339802
+8.386753674101715,-1.1336933199561368
+8.440826794978996,-1.1656720744979847
+8.492785252292473,-1.2009830056250523
+8.54242398974869,-1.2394867572242103
+8.58954710592869,-1.2810313725785882
+8.633968627421412,-1.325452894071311
+8.67551324277579,-1.3725760102513103
+8.714016994374946,-1.4222147477075269
+8.749327925502014,-1.4741732050210026
+8.781306680043864,-1.5282463258982848
+8.80982705246602,-1.584220708434927
+8.83477648588825,-1.641875447315322
+8.856056516295153,-1.7009830056250523
+8.87358316112863,-1.7613101128351454
+8.887287250728688,-1.8226186854142754
+8.897114701314477,-1.8846667664356953
+8.903026728428271,-1.9472094804706868
+8.905,-2.01"/></g><g stroke-opacity="0.2" stroke="#000000" stroke-width="2.0e-2" fill="none"><polyline points="7.9049999999999985,-1.01
+7.90302672842827,-1.0727905195293135
+7.897114701314478,-1.1353332335643043
+7.887287250728688,-1.1973813145857246
+7.87358316112863,-1.258689887164855
+7.856056516295152,-1.3190169943749475
+7.83477648588825,-1.3781245526846777
+7.809827052466019,-1.4357792915650727
+7.781306680043864,-1.4917536741017154
+7.749327925502015,-1.5458267949789968
+7.714016994374947,-1.597785252292473
+7.67551324277579,-1.6474239897486895
+7.633968627421411,-1.6945471059286885
+7.589547105928688,-1.7389686274214113
+7.5424239897486896,-1.7805132427757893
+7.492785252292472,-1.8190169943749472
+7.440826794978997,-1.8543279255020149
+7.386753674101714,-1.8863066800438635
+7.330779291565073,-1.9148270524660194
+7.273124552684678,-1.9397764858882511
+7.214016994374948,-1.961056516295153
+7.1536898871648535,-1.9785831611286309
+7.092381314585725,-1.9922872507286882
+7.030333233564304,-2.0021147013144778
+6.967790519529313,-2.0080267284282716
+6.905,-2.01
+6.842209480470686,-2.0080267284282716
+6.779666766435696,-2.0021147013144778
+6.717618685414275,-1.9922872507286882
+6.656310112835145,-1.9785831611286309
+6.595983005625052,-1.9610565162951534
+6.536875447315321,-1.9397764858882516
+6.479220708434927,-1.9148270524660194
+6.423246325898285,-1.8863066800438635
+6.369173205021003,-1.8543279255020149
+6.317214747707528,-1.8190169943749475
+6.267576010251309,-1.7805132427757893
+6.220452894071311,-1.7389686274214113
+6.1760313725785885,-1.694547105928689
+6.134486757224209,-1.64742398974869
+6.095983005625052,-1.597785252292473
+6.060672074497985,-1.5458267949789968
+6.028693319956136,-1.4917536741017152
+6.000172947533979,-1.435779291565073
+5.9752235141117485,-1.3781245526846782
+5.953943483704846,-1.3190169943749475
+5.936416838871368,-1.258689887164855
+5.9227127492713105,-1.1973813145857246
+5.912885298685522,-1.135333233564304
+5.9069732715717285,-1.0727905195293137
+5.904999999999999,-1.0100000000000002
+5.9069732715717285,-0.9472094804706866
+5.912885298685522,-0.8846667664356958
+5.9227127492713105,-0.8226186854142752
+5.936416838871368,-0.7613101128351455
+5.953943483704846,-0.7009830056250523
+5.9752235141117485,-0.6418754473153221
+6.000172947533979,-0.5842207084349278
+6.028693319956136,-0.5282463258982846
+6.060672074497984,-0.4741732050210036
+6.095983005625052,-0.422214747707527
+6.134486757224209,-0.3725760102513104
+6.1760313725785885,-0.3254528940713116
+6.220452894071311,-0.28103137257858846
+6.267576010251309,-0.23948675722421062
+6.317214747707527,-0.20098300562505264
+6.369173205021003,-0.16567207449798468
+6.423246325898285,-0.13369331995613642
+6.479220708434928,-0.10517294753398021
+6.536875447315321,-8.022351411174855e-2
+6.595983005625052,-5.894348370484648e-2
+6.656310112835145,-4.141683887136882e-2
+6.717618685414275,-2.7712749271311288e-2
+6.779666766435696,-1.7885298685522244e-2
+6.842209480470686,-1.197327157172845e-2
+6.905,-1.0000000000000009e-2
+6.967790519529313,-1.197327157172845e-2
+7.030333233564304,-1.7885298685522133e-2
+7.092381314585725,-2.7712749271311288e-2
+7.1536898871648535,-4.141683887136893e-2
+7.214016994374948,-5.894348370484637e-2
+7.273124552684676,-8.022351411174847e-2
+7.330779291565071,-0.10517294753398007
+7.3867536741017155,-0.13369331995613665
+7.440826794978997,-0.1656720744979849
+7.492785252292472,-0.20098300562505242
+7.542423989748689,-0.2394867572242104
+7.589547105928688,-0.28103137257858846
+7.633968627421411,-0.32545289407131106
+7.67551324277579,-0.3725760102513104
+7.714016994374947,-0.42221474770752676
+7.749327925502015,-0.4741732050210029
+7.781306680043864,-0.5282463258982847
+7.809827052466019,-0.5842207084349271
+7.83477648588825,-0.6418754473153222
+7.856056516295152,-0.7009830056250523
+7.87358316112863,-0.7613101128351455
+7.887287250728688,-0.8226186854142753
+7.897114701314478,-0.8846667664356952
+7.90302672842827,-0.9472094804706869
+7.9049999999999985,-1.0099999999999998"/></g><g stroke-opacity="0.5" stroke="#0000ff" stroke-width="5.0e-2" fill="none"><polyline points="6.905,-2.01
+6.90611012503803,-2.057106450709643
+6.909438035396919,-2.1041083133185143
+6.914976342283442,-2.1509012319375826
+6.9227127492713105,-2.197381314585725
+6.9326300796023235,-2.2434453638559053
+6.9447063143230565,-2.2889911060392287
+6.958914641172454,-2.3339174181981495
+6.975223514111749,-2.378124552684678
+6.993596723364554,-2.4215143586051084
+7.013993475811631,-2.463990499739546
+7.036368485561809,-2.505458668432407
+7.060672074497984,-2.545826794978996
+7.086850282574977,-2.585005252043278
+7.114844987624309,-2.6229070536529755
+7.144594034399968,-2.6594480483301832
+7.176031372578589,-2.6945471059286885
+7.209087203407686,-2.728126297763189
+7.243688134676347,-2.76011106963046
+7.2797573436642935,-2.79043040733833
+7.317214747707526,-2.8190169943749472
+7.355977182001867,-2.84580736136827
+7.395958584249629,-2.8707420270039434
+7.437070185739426,-2.8937656300886934
+7.479220708434926,-2.914827052466019
+7.52231656763491,-2.9338795325112867
+7.566262079754708,-2.950880768954225
+7.610959674767694,-2.9657930147983302
+7.656310112835144,-2.978583161128631
+7.702212704643486,-2.989222810621766
+7.748565534959768,-2.9976883405951376
+7.795265688908954,-3.003960955455179
+7.842209480470687,-3.008026728428272
+7.889292682688178,-3.0098766324816606
+7.936410759078128,-3.009506560365731
+7.983459095727846,-3.006917333733128
+8.030333233564303,-3.002114701314478
+8.076929100279408,-2.995109326154774
+8.12314324139654,-2.9859167619387468
+8.16887304996537,-2.974557418457798
+8.214016994374946,-2.9610565162951534
+8.258474843779256,-2.945444030829868
+8.30214789063478,-2.927754625683981
+8.344939169855914,-2.9080275757606158
+8.386753674101715,-2.886306680043863
+8.427498564715947,-2.8626401643540924
+8.46708337785213,-2.837080574274562
+8.505420225325883,-2.80968465848709
+8.54242398974869,-2.7805132427757897
+8.578012513509773,-2.74963109497861
+8.612106781186547,-2.7171067811865472
+8.644631094978608,-2.683012513509774
+8.67551324277579,-2.6474239897486895
+8.704684658487091,-2.610420225325884
+8.732080574274558,-2.5720833778521306
+8.757640164354092,-2.532498564715949
+8.781306680043864,-2.4917536741017154
+8.803027575760614,-2.4499391698559156
+8.82275462568398,-2.4071478906347803
+8.840444030829866,-2.363474843779257
+8.856056516295153,-2.3190169943749477
+8.869557418457797,-2.2738730499653723
+8.880916761938748,-2.2281432413965434
+8.890109326154773,-2.18192910027941
+8.897114701314477,-2.135333233564304
+8.901917333733127,-2.0884590957278455
+8.90450656036573,-2.0414107590781283
+8.90487663248166,-1.9942926826881786
+8.903026728428271,-1.9472094804706872
+8.898960955455179,-1.9002656889089549
+8.892688340595138,-1.8535655349597686
+8.884222810621766,-1.807212704643488
+8.87358316112863,-1.7613101128351452
+8.86079301479833,-1.7159596747676953
+8.845880768954226,-1.671262079754709
+8.828879532511285,-1.62731656763491
+8.80982705246602,-1.584220708434928
+8.788765630088692,-1.5420701857394266
+8.765742027003943,-1.5009585842496282
+8.74080736136827,-1.4609771820018687
+8.714016994374946,-1.422214747707527
+8.685430407338329,-1.3847573436642944
+8.65511106963046,-1.348688134676349
+8.623126297763188,-1.3140872034076858
+8.589547105928688,-1.281031372578588
+8.554448048330183,-1.249594034399969
+8.517907053652976,-1.2198449876243096
+8.480005252043279,-1.1918502825749768
+8.440826794978996,-1.1656720744979847
+8.400458668432407,-1.141368485561809
+8.358990499739546,-1.1189934758116324
+8.316514358605108,-1.0985967233645546
+8.273124552684678,-1.0802235141117484
+8.228917418198147,-1.0639146411724547
+8.18399110603923,-1.049706314323057
+8.138445363855904,-1.0376300796023235
+8.092381314585724,-1.0277127492713114
+8.045901231937583,-1.0199763422834425
+7.999108313318513,-1.0144380353969198
+7.952106450709642,-1.01111012503803
+7.9049999999999985,-1.01"/></g><g stroke-opacity="0.5" fill-opacity="0.3" stroke="#000000" stroke-width="1.0e-2" fill="#0000ff"><path d="M 7.9050,-2.01 L 6.905,-2.01 A 1.0 1.0 -0.0 1 1 7.9050,-1.01 L 7.9050,-2.01"/></g><g stroke-opacity="0.2" stroke="#000000" stroke-width="2.0e-2" fill="none"><polyline points="8.91987663248166,-5.06487663248166
+8.917903360909932,-5.1276671520109725
+8.911991333796138,-5.190209866045965
+8.90216388321035,-5.252257947067385
+8.888459793610291,-5.313566519646515
+8.870933148776814,-5.373893626856607
+8.849653118369911,-5.433001185166338
+8.82470368494768,-5.490655924046733
+8.796183312525523,-5.546630306583376
+8.764204557983675,-5.600703427460656
+8.728893626856609,-5.652661884774133
+8.69038987525745,-5.70230062223035
+8.648845259903071,-5.749423738410349
+8.604423738410347,-5.793845259903071
+8.557300622230349,-5.835389875257449
+8.507661884774134,-5.873893626856608
+8.455703427460657,-5.909204557983675
+8.401630306583375,-5.941183312525524
+8.345655924046733,-5.96970368494768
+8.288001185166339,-5.994653118369911
+8.228893626856607,-6.0159331487768135
+8.168566519646514,-6.033459793610291
+8.107257947067385,-6.047163883210349
+8.045209866045964,-6.056991333796137
+7.982667152010975,-6.062903360909932
+7.91987663248166,-6.06487663248166
+7.857086112952348,-6.062903360909932
+7.794543398917356,-6.056991333796137
+7.7324953178959355,-6.047163883210349
+7.671186745316804,-6.033459793610291
+7.610859638106713,-6.0159331487768135
+7.551752079796981,-5.994653118369911
+7.494097340916587,-5.96970368494768
+7.438122958379943,-5.941183312525524
+7.384049837502664,-5.909204557983675
+7.332091380189186,-5.873893626856608
+7.28245264273297,-5.835389875257449
+7.235329526552971,-5.793845259903071
+7.1909080050602485,-5.749423738410349
+7.14936338970587,-5.70230062223035
+7.110859638106714,-5.652661884774133
+7.075548706979645,-5.600703427460657
+7.043569952437797,-5.546630306583376
+7.015049580015639,-5.490655924046733
+6.9901001465934085,-5.433001185166338
+6.968820116186506,-5.373893626856607
+6.951293471353029,-5.313566519646515
+6.9375893817529715,-5.252257947067385
+6.927761931167183,-5.190209866045963
+6.9218499040533885,-5.1276671520109725
+6.919876632481659,-5.064876632481661
+6.9218499040533885,-5.002086112952348
+6.927761931167183,-4.9395433989173565
+6.9375893817529715,-4.877495317895936
+6.951293471353029,-4.816186745316805
+6.968820116186506,-4.755859638106713
+6.9901001465934085,-4.696752079796982
+7.015049580015639,-4.639097340916588
+7.043569952437798,-4.583122958379944
+7.075548706979645,-4.529049837502665
+7.110859638106714,-4.477091380189187
+7.14936338970587,-4.427452642732971
+7.1909080050602485,-4.3803295265529725
+7.235329526552972,-4.335908005060249
+7.28245264273297,-4.294363389705871
+7.332091380189186,-4.255859638106713
+7.384049837502664,-4.2205487069796455
+7.438122958379943,-4.188569952437797
+7.494097340916587,-4.160049580015641
+7.551752079796981,-4.135100146593409
+7.610859638106712,-4.113820116186507
+7.671186745316807,-4.09629347135303
+7.7324953178959355,-4.082589381752972
+7.794543398917355,-4.072761931167182
+7.857086112952348,-4.066849904053389
+7.91987663248166,-4.064876632481661
+7.982667152010973,-4.066849904053389
+8.045209866045964,-4.072761931167182
+8.107257947067383,-4.082589381752972
+8.168566519646514,-4.09629347135303
+8.228893626856607,-4.113820116186507
+8.288001185166337,-4.135100146593409
+8.345655924046731,-4.160049580015641
+8.401630306583375,-4.188569952437797
+8.455703427460657,-4.2205487069796455
+8.507661884774132,-4.255859638106713
+8.557300622230349,-4.294363389705871
+8.604423738410347,-4.335908005060249
+8.648845259903071,-4.380329526552972
+8.69038987525745,-4.427452642732971
+8.728893626856609,-4.477091380189187
+8.764204557983675,-4.529049837502663
+8.796183312525523,-4.583122958379945
+8.82470368494768,-4.639097340916588
+8.849653118369911,-4.696752079796982
+8.870933148776814,-4.755859638106713
+8.888459793610291,-4.816186745316805
+8.90216388321035,-4.877495317895936
+8.911991333796138,-4.939543398917356
+8.917903360909932,-5.002086112952348
+8.91987663248166,-5.06487663248166"/></g><g stroke-opacity="0.2" stroke="#000000" stroke-width="2.0e-2" fill="none"><polyline points="7.91987663248166,-4.064876632481661
+7.917903360909932,-4.127667152010974
+7.911991333796138,-4.190209866045965
+7.902163883210348,-4.252257947067386
+7.888459793610292,-4.313566519646515
+7.870933148776814,-4.373893626856608
+7.849653118369911,-4.433001185166338
+7.824703684947679,-4.490655924046733
+7.796183312525524,-4.546630306583375
+7.764204557983674,-4.600703427460657
+7.728893626856608,-4.652661884774132
+7.69038987525745,-4.70230062223035
+7.64884525990307,-4.749423738410348
+7.6044237384103495,-4.793845259903072
+7.5573006222303505,-4.83538987525745
+7.507661884774134,-4.873893626856608
+7.455703427460657,-4.909204557983675
+7.401630306583375,-4.941183312525524
+7.345655924046732,-4.96970368494768
+7.2880011851663395,-4.994653118369912
+7.228893626856607,-5.015933148776813
+7.1685665196465145,-5.03345979361029
+7.107257947067384,-5.047163883210349
+7.045209866045964,-5.056991333796138
+6.982667152010974,-5.062903360909931
+6.919876632481659,-5.06487663248166
+6.857086112952348,-5.062903360909931
+6.794543398917355,-5.056991333796138
+6.732495317895935,-5.047163883210349
+6.671186745316806,-5.03345979361029
+6.610859638106712,-5.015933148776813
+6.551752079796982,-4.994653118369912
+6.4940973409165865,-4.96970368494768
+6.438122958379944,-4.941183312525524
+6.384049837502663,-4.909204557983675
+6.332091380189187,-4.873893626856608
+6.28245264273297,-4.83538987525745
+6.235329526552971,-4.793845259903072
+6.190908005060248,-4.749423738410348
+6.149363389705871,-4.70230062223035
+6.110859638106712,-4.652661884774133
+6.075548706979644,-4.600703427460657
+6.043569952437796,-4.546630306583375
+6.01504958001564,-4.490655924046734
+5.990100146593409,-4.433001185166338
+5.9688201161865075,-4.373893626856608
+5.951293471353029,-4.313566519646515
+5.9375893817529715,-4.252257947067385
+5.927761931167181,-4.190209866045965
+5.921849904053389,-4.127667152010974
+5.919876632481661,-4.064876632481661
+5.921849904053389,-4.002086112952347
+5.927761931167181,-3.9395433989173565
+5.9375893817529715,-3.8774953178959355
+5.951293471353029,-3.8161867453168057
+5.9688201161865075,-3.7558596381067124
+5.990100146593409,-3.6967520797969824
+6.01504958001564,-3.6390973409165874
+6.043569952437796,-3.5831229583799455
+6.075548706979644,-3.5290498375026638
+6.110859638106712,-3.4770913801891874
+6.14936338970587,-3.4274526427329706
+6.190908005060248,-3.3803295265529725
+6.235329526552971,-3.335908005060249
+6.28245264273297,-3.294363389705871
+6.332091380189187,-3.2558596381067133
+6.384049837502663,-3.220548706979645
+6.438122958379945,-3.188569952437797
+6.4940973409165865,-3.1600495800156403
+6.551752079796982,-3.135100146593409
+6.610859638106712,-3.113820116186507
+6.671186745316806,-3.09629347135303
+6.732495317895935,-3.082589381752972
+6.794543398917354,-3.0727619311671823
+6.857086112952348,-3.066849904053389
+6.919876632481659,-3.0648766324816608
+6.982667152010973,-3.066849904053389
+7.045209866045964,-3.0727619311671823
+7.107257947067383,-3.082589381752972
+7.1685665196465145,-3.09629347135303
+7.228893626856607,-3.113820116186507
+7.288001185166338,-3.135100146593409
+7.3456559240467305,-3.1600495800156403
+7.401630306583375,-3.188569952437797
+7.455703427460657,-3.220548706979645
+7.507661884774132,-3.2558596381067133
+7.5573006222303505,-3.294363389705871
+7.6044237384103495,-3.335908005060249
+7.64884525990307,-3.380329526552972
+7.69038987525745,-3.4274526427329706
+7.728893626856607,-3.4770913801891874
+7.764204557983674,-3.529049837502663
+7.796183312525524,-3.5831229583799455
+7.824703684947679,-3.6390973409165874
+7.849653118369911,-3.6967520797969824
+7.870933148776814,-3.7558596381067137
+7.888459793610292,-3.8161867453168057
+7.902163883210348,-3.8774953178959355
+7.911991333796138,-3.9395433989173556
+7.917903360909932,-4.002086112952347
+7.91987663248166,-4.06487663248166"/></g><g stroke-opacity="0.5" stroke="#ff0000" stroke-width="5.0e-2" fill="none"><polyline points="6.919876632481659,-5.06487663248166
+6.872770181772016,-5.06376650744363
+6.825768319163145,-5.060438597084739
+6.778975400544077,-5.0549002901982165
+6.732495317895935,-5.047163883210349
+6.686431268625754,-5.037246552879337
+6.64088552644243,-5.025170318158604
+6.5959592142835115,-5.0109619913092045
+6.551752079796982,-4.994653118369912
+6.5083622738765525,-4.976279909117106
+6.4658861327421135,-4.955883156670028
+6.424417964049252,-4.933508146919852
+6.384049837502663,-4.909204557983675
+6.344871380438382,-4.883026349906684
+6.306969578828684,-4.855031644857351
+6.270428584151476,-4.825282598081691
+6.235329526552971,-4.793845259903072
+6.201750334718471,-4.7607894290739745
+6.169765562851201,-4.726188497805312
+6.139446225143329,-4.690119288817366
+6.110859638106712,-4.652661884774133
+6.084069271113391,-4.613899450479791
+6.059134605477715,-4.573918048232032
+6.036111002392966,-4.532806446742234
+6.01504958001564,-4.490655924046734
+5.995997099970373,-4.44756006484675
+5.978995863527435,-4.4036145527269515
+5.964083617683329,-4.358916957713965
+5.951293471353029,-4.313566519646515
+5.940653821859894,-4.267663927838173
+5.932188291886521,-4.221311097521892
+5.925915677026481,-4.174610943572707
+5.921849904053389,-4.127667152010973
+5.919999999999999,-4.080583949793481
+5.920370072115928,-4.033465873403532
+5.922959298748531,-3.986417536753814
+5.927761931167181,-3.9395433989173565
+5.934767306326886,-3.8929475322022506
+5.943959870542912,-3.8467333910851185
+5.955319214023861,-3.801003582516288
+5.9688201161865075,-3.7558596381067137
+5.9844326016517915,-3.7114017887024033
+6.002122006797679,-3.667728741846879
+6.021849056721044,-3.6249374626257453
+6.043569952437796,-3.5831229583799455
+6.067236468127569,-3.5423780677657115
+6.092796058207098,-3.502793254629529
+6.12019197399457,-3.464456407155777
+6.14936338970587,-3.4274526427329706
+6.180245537503049,-3.391864118971887
+6.212769851295113,-3.357769851295113
+6.246864118971887,-3.3252455375030503
+6.28245264273297,-3.294363389705871
+6.319456407155777,-3.2651919739945705
+6.357793254629528,-3.237796058207099
+6.39737806776571,-3.2122364681275672
+6.438122958379945,-3.188569952437797
+6.479937462625744,-3.166849056721045
+6.522728741846879,-3.147122006797679
+6.566401788702402,-3.1294326016517924
+6.610859638106712,-3.113820116186507
+6.656003582516289,-3.1003192140238625
+6.701733391085117,-3.088959870542913
+6.747947532202249,-3.079767306326887
+6.794543398917355,-3.0727619311671823
+6.8414175367538155,-3.067959298748533
+6.888465873403531,-3.0653700721159285
+6.9355839497934815,-3.0649999999999995
+6.982667152010973,-3.066849904053389
+7.029610943572705,-3.07091567702648
+7.0763110975218915,-3.077188291886522
+7.122663927838171,-3.0856538218598946
+7.1685665196465145,-3.09629347135303
+7.2139169577139635,-3.10908361768333
+7.258614552726951,-3.1239958635274347
+7.302560064846751,-3.140997099970374
+7.3456559240467305,-3.1600495800156403
+7.387806446742234,-3.181111002392967
+7.428918048232031,-3.2041346054777162
+7.468899450479791,-3.229069271113389
+7.507661884774132,-3.2558596381067133
+7.545119288817364,-3.2844462251433306
+7.581188497805311,-3.3147655628512007
+7.615789429073975,-3.3467503347184717
+7.648845259903071,-3.3803295265529725
+7.68028259808169,-3.415428584151477
+7.7100316448573505,-3.4519695788286833
+7.738026349906683,-3.4898713804383816
+7.764204557983676,-3.5290498375026638
+7.7885081469198525,-3.5694179640492534
+7.810883156670028,-3.6108861327421127
+7.831279909117106,-3.653362273876552
+7.849653118369911,-3.6967520797969824
+7.865961991309205,-3.7409592142835115
+7.880170318158602,-3.78588552644243
+7.892246552879336,-3.831431268625756
+7.902163883210348,-3.8774953178959355
+7.909900290198217,-3.9239754005440775
+7.915438597084739,-3.9707683191631453
+7.91876650744363,-4.0177701817720175
+7.91987663248166,-4.06487663248166"/></g><g stroke-opacity="0.5" fill-opacity="0.3" stroke="#000000" stroke-width="1.0e-2" fill="#ff0000"><path d="M 7.9199,-5.0649 L 6.9199,-5.0649 A 1.0 1.0 -0.0 1 0 7.9199,-4.0649 L 7.9199,-5.0649"/></g><g></g><g fill-opacity="1.0" font-size="0.4" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="7.394999999999999" y="-7.004876632481659">True</text></g><g></g><g fill-opacity="1.0" font-size="0.6" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="5.499999999999999" y="-7.594876632481659">Large</text></g><g></g></svg>
diff --git a/other/arrowg.svg b/other/arrowg.svg
new file mode 100644
--- /dev/null
+++ b/other/arrowg.svg
@@ -0,0 +1,23 @@
+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.87 -0.5532717050794361 1.6775 1.0995217050794361" width="457.69901373947147" xmlns:xlink="http://www.w3.org/1999/xlink"><style type="text/css">* { shape-rendering: crispEdges; }</style><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="0.8950548221078541" width="1.3974504293278263" x="-0.6474504293278263" y="-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.408033117028418">-0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.31852763481763263">-0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.22902215260684716">-0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.1395166703960617">-0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="5.001118818527622e-2">-0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-3.949429402550919e-2">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.12899977623629466">0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.2185052584470799">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.3080107406578654">0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.39751622286865085">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.4870217050794361">0.5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><g transform="rotate(-90.0, -0.7196520348430974, 0.39505482210785414)"><polyline points="-0.7196520348430974,0.41005482210785416
+-0.7196520348430974,0.38005482210785413"/></g><g transform="rotate(-90.0, -0.7196520348430974, 0.30554933989706873)"><polyline points="-0.7196520348430974,0.32054933989706874
+-0.7196520348430974,0.2905493398970687"/></g><g transform="rotate(-90.0, -0.7196520348430974, 0.21604385768628326)"><polyline points="-0.7196520348430974,0.23104385768628327
+-0.7196520348430974,0.20104385768628324"/></g><g transform="rotate(-90.0, -0.7196520348430974, 0.1265383754754978)"><polyline points="-0.7196520348430974,0.1415383754754978
+-0.7196520348430974,0.11153837547549779"/></g><g transform="rotate(-90.0, -0.7196520348430974, 3.7032893264712374e-2)"><polyline points="-0.7196520348430974,5.2032893264712374e-2
+-0.7196520348430974,2.2032893264712375e-2"/></g><g transform="rotate(-90.0, -0.7196520348430974, -5.2472588946072984e-2)"><polyline points="-0.7196520348430974,-3.7472588946072985e-2
+-0.7196520348430974,-6.747258894607298e-2"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.14197807115685857)"><polyline points="-0.7196520348430974,-0.12697807115685855
+-0.7196520348430974,-0.15697807115685858"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.23148355336764392)"><polyline points="-0.7196520348430974,-0.2164835533676439
+-0.7196520348430974,-0.24648355336764394"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.32098903557842917)"><polyline points="-0.7196520348430974,-0.30598903557842916
+-0.7196520348430974,-0.3359890355784292"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.41049451778921475)"><polyline points="-0.7196520348430974,-0.39549451778921474
+-0.7196520348430974,-0.42549451778921477"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.5)"><polyline points="-0.7196520348430974,-0.485
+-0.7196520348430974,-0.515"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="0.8950548221078541" width="4.65816809775943e-3" x="-0.7080066145986988" y="-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.6474504293278263" y="0.5">-0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.5077053863950438" y="0.5">-0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.367960343462261" y="0.5">-0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.22821530052947825" y="0.5">-0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-8.847025759669558e-2" y="0.5">-0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="5.127478533608687e-2" y="0.5">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.19101982826886954" y="0.5">0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.330764871201652" y="0.5">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.4705099141344351" y="0.5">0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.6102549570672173" y="0.5">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.75" y="0.5">0.5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="-0.6474504293278263,0.44003915864846727
+-0.6474504293278263,0.41003915864846724"/><polyline points="-0.5077053863950438,0.44003915864846727
+-0.5077053863950438,0.41003915864846724"/><polyline points="-0.367960343462261,0.44003915864846727
+-0.367960343462261,0.41003915864846724"/><polyline points="-0.22821530052947825,0.44003915864846727
+-0.22821530052947825,0.41003915864846724"/><polyline points="-8.847025759669558e-2,0.44003915864846727
+-8.847025759669558e-2,0.41003915864846724"/><polyline points="5.127478533608687e-2,0.44003915864846727
+5.127478533608687e-2,0.41003915864846724"/><polyline points="0.19101982826886954,0.44003915864846727
+0.19101982826886954,0.41003915864846724"/><polyline points="0.330764871201652,0.44003915864846727
+0.330764871201652,0.41003915864846724"/><polyline points="0.4705099141344351,0.44003915864846727
+0.4705099141344351,0.41003915864846724"/><polyline points="0.6102549570672173,0.44003915864846727
+0.6102549570672173,0.41003915864846724"/><polyline points="0.75,0.44003915864846727
+0.75,0.41003915864846724"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.475274110539218e-3" width="1.3974504293278263" x="-0.6474504293278263" y="0.40937569926157985"/></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-40.750752273812985, -0.6125141685946306, 0.3726784515551578)"><path transform="translate(-0.6125141685946306, 0.3726784515551578) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-40.35890150142677, -0.6125141685946306, 0.32792571044976504)"><path transform="translate(-0.6125141685946306, 0.32792571044976504) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-39.90964538903207, -0.6125141685946306, 0.2831729693443723)"><path transform="translate(-0.6125141685946306, 0.2831729693443723) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-39.38944196375233, -0.6125141685946306, 0.23842022823897957)"><path transform="translate(-0.6125141685946306, 0.23842022823897957) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-38.780154577808794, -0.6125141685946306, 0.1936674871335869)"><path transform="translate(-0.6125141685946306, 0.1936674871335869) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-38.05693850899711, -0.6125141685946306, 0.14891474602819416)"><path transform="translate(-0.6125141685946306, 0.14891474602819416) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-37.18485486655586, -0.6125141685946306, 0.10416200492280142)"><path transform="translate(-0.6125141685946306, 0.10416200492280142) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-36.113229916476286, -0.6125141685946306, 5.94092638174088e-2)"><path transform="translate(-0.6125141685946306, 5.94092638174088e-2) scale(1.8008609969097433e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-34.76582087482662, -0.6125141685946306, 1.4656522712016007e-2)"><path transform="translate(-0.6125141685946306, 1.4656522712016007e-2) scale(1.595933329153097e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-33.02272503512511, -0.6125141685946306, -3.0096218393376617e-2)"><path transform="translate(-0.6125141685946306, -3.0096218393376617e-2) scale(1.3921478068419948e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-30.684914847142537, -0.6125141685946306, -7.484895949876935e-2)"><path transform="translate(-0.6125141685946306, -7.484895949876935e-2) scale(1.1900913011910565e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-27.399301757020293, -0.6125141685946306, -0.11960170060416198)"><path transform="translate(-0.6125141685946306, -0.11960170060416198) scale(9.908221628166295e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-22.486373268527945, -0.6125141685946306, -0.16435444170955493)"><path transform="translate(-0.6125141685946306, -0.16435444170955493) scale(7.96435355549326e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-14.511261368485256, -0.6125141685946306, -0.20910718281494756)"><path transform="translate(-0.6125141685946306, -0.20910718281494756) scale(6.1160400333197295e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-0.2418039221482425, -0.6125141685946306, -0.2538599239203403)"><path transform="translate(-0.6125141685946306, -0.2538599239203403) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(26.143451029928766, -0.6125141685946306, -0.2986126650257329)"><path transform="translate(-0.6125141685946306, -0.2986126650257329) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(61.88544705855385, -0.6125141685946306, -0.34336540613112565)"><path transform="translate(-0.6125141685946306, -0.34336540613112565) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(87.85540701063856, -0.6125141685946306, -0.3881181472365184)"><path transform="translate(-0.6125141685946306, -0.3881181472365184) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(101.87010018967942, -0.6125141685946306, -0.43287088834191134)"><path transform="translate(-0.6125141685946306, -0.43287088834191134) scale(6.1672710718810725e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(109.72383830644168, -0.6125141685946306, -0.47762362944730385)"><path transform="translate(-0.6125141685946306, -0.47762362944730385) scale(8.019471868879295e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-43.13408540736626, -0.5426416471282393, 0.3726784515551578)"><path transform="translate(-0.5426416471282393, 0.3726784515551578) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-42.65775470761334, -0.5426416471282393, 0.32792571044976504)"><path transform="translate(-0.5426416471282393, 0.32792571044976504) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-42.10654172532391, -0.5426416471282393, 0.2831729693443723)"><path transform="translate(-0.5426416471282393, 0.2831729693443723) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-41.46141321308426, -0.5426416471282393, 0.23842022823897957)"><path transform="translate(-0.5426416471282393, 0.23842022823897957) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-40.69634700282399, -0.5426416471282393, 0.1936674871335869)"><path transform="translate(-0.5426416471282393, 0.1936674871335869) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-39.77483650776021, -0.5426416471282393, 0.14891474602819416)"><path transform="translate(-0.5426416471282393, 0.14891474602819416) scale(1.919261669392229e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-38.64409530985172, -0.5426416471282393, 0.10416200492280142)"><path transform="translate(-0.5426416471282393, 0.10416200492280142) scale(1.7238838191872025e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-37.2250146535623, -0.5426416471282393, 5.94092638174088e-2)"><path transform="translate(-0.5426416471282393, 5.94092638174088e-2) scale(1.5293487648541612e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-35.393838527837644, -0.5426416471282393, 1.4656522712016007e-2)"><path transform="translate(-0.5426416471282393, 1.4656522712016007e-2) scale(1.3360247090210291e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-32.94663940356874, -0.5426416471282393, -3.0096218393376617e-2)"><path transform="translate(-0.5426416471282393, -3.0096218393376617e-2) scale(1.1445254727251756e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-29.525463395856086, -0.5426416471282393, -7.484895949876935e-2)"><path transform="translate(-0.5426416471282393, -7.484895949876935e-2) scale(9.5594835026121e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-24.45266561108329, -0.5426416471282393, -0.11960170060416198)"><path transform="translate(-0.5426416471282393, -0.11960170060416198) scale(7.7243646668561355e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-16.335893094481097, -0.5426416471282393, -0.16435444170955493)"><path transform="translate(-0.5426416471282393, -0.16435444170955493) scale(5.986660987668035e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-2.187190799534037, -0.5426416471282393, -0.20910718281494756)"><path transform="translate(-0.5426416471282393, -0.20910718281494756) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(22.952722859722915, -0.5426416471282393, -0.2538599239203403)"><path transform="translate(-0.5426416471282393, -0.2538599239203403) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(56.57783198959668, -0.5426416471282393, -0.2986126650257329)"><path transform="translate(-0.5426416471282393, -0.2986126650257329) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(82.19831130957981, -0.5426416471282393, -0.34336540613112565)"><path transform="translate(-0.5426416471282393, -0.34336540613112565) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(96.66654187280496, -0.5426416471282393, -0.3881181472365184)"><path transform="translate(-0.5426416471282393, -0.3881181472365184) scale(5.924090244682791e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(104.94281723598905, -0.5426416471282393, -0.43287088834191134)"><path transform="translate(-0.5426416471282393, -0.43287088834191134) scale(7.656529183044141e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(110.09876372840056, -0.5426416471282393, -0.47762362944730385)"><path transform="translate(-0.5426416471282393, -0.47762362944730385) scale(9.48905941805065e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-45.77372233469362, -0.47276912566184803, 0.3726784515551578)"><path transform="translate(-0.47276912566184803, 0.3726784515551578) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-45.19852928001479, -0.47276912566184803, 0.32792571044976504)"><path transform="translate(-0.47276912566184803, 0.32792571044976504) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-44.52649194126508, -0.47276912566184803, 0.2831729693443723)"><path transform="translate(-0.47276912566184803, 0.2831729693443723) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-43.731145904976024, -0.47276912566184803, 0.23842022823897957)"><path transform="translate(-0.47276912566184803, 0.23842022823897957) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-42.77553701450309, -0.47276912566184803, 0.1936674871335869)"><path transform="translate(-0.47276912566184803, 0.1936674871335869) scale(1.8526138174695884e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-41.60653531853289, -0.47276912566184803, 0.14891474602819416)"><path transform="translate(-0.47276912566184803, 0.14891474602819416) scale(1.6668446779630613e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-40.14508031960994, -0.47276912566184803, 0.10416200492280142)"><path transform="translate(-0.47276912566184803, 0.10416200492280142) scale(1.4819431904772442e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-38.26860559693515, -0.47276912566184803, 5.94092638174088e-2)"><path transform="translate(-0.47276912566184803, 5.94092638174088e-2) scale(1.298280121824069e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-35.77752575114125, -0.47276912566184803, 1.4656522712016007e-2)"><path transform="translate(-0.47276912566184803, 1.4656522712016007e-2) scale(1.116466813308266e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-32.32709409714627, -0.47276912566184803, -3.0096218393376617e-2)"><path transform="translate(-0.47276912566184803, -3.0096218393376617e-2) scale(9.37579986607789e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-27.27922750574734, -0.47276912566184803, -7.484895949876935e-2)"><path transform="translate(-0.47276912566184803, -7.484895949876935e-2) scale(7.636789462396879e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-19.364761239541675, -0.47276912566184803, -0.11960170060416198)"><path transform="translate(-0.47276912566184803, -0.11960170060416198) scale(5.991210646819308e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-5.977773592360625, -0.47276912566184803, -0.16435444170955493)"><path transform="translate(-0.47276912566184803, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(17.102728969052386, -0.47276912566184803, -0.20910718281494756)"><path transform="translate(-0.47276912566184803, -0.20910718281494756) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(48.66418432074075, -0.47276912566184803, -0.2538599239203403)"><path transform="translate(-0.47276912566184803, -0.2538599239203403) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(74.71669842685262, -0.47276912566184803, -0.2986126650257329)"><path transform="translate(-0.47276912566184803, -0.2986126650257329) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(90.24277727376685, -0.47276912566184803, -0.34336540613112565)"><path transform="translate(-0.47276912566184803, -0.34336540613112565) scale(5.581369633236387e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(99.27639821103476, -0.47276912566184803, -0.3881181472365184)"><path transform="translate(-0.47276912566184803, -0.3881181472365184) scale(7.188912855816878e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(104.9216196783163, -0.47276912566184803, -0.43287088834191134)"><path transform="translate(-0.47276912566184803, -0.43287088834191134) scale(8.908892785952706e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(108.71561169812306, -0.47276912566184803, -0.47762362944730385)"><path transform="translate(-0.47276912566184803, -0.47762362944730385) scale(1.0687160280075639e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-48.710320497412845, -0.4028966041954566, 0.3726784515551578)"><path transform="translate(-0.4028966041954566, 0.3726784515551578) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-48.02211016675741, -0.4028966041954566, 0.32792571044976504)"><path transform="translate(-0.4028966041954566, 0.32792571044976504) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-47.21010203398549, -0.4028966041954566, 0.2831729693443723)"><path transform="translate(-0.4028966041954566, 0.2831729693443723) scale(1.982595517846054e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-46.23802649355172, -0.4028966041954566, 0.23842022823897957)"><path transform="translate(-0.4028966041954566, 0.23842022823897957) scale(1.804948939752171e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-45.054148109317985, -0.4028966041954566, 0.1936674871335869)"><path transform="translate(-0.4028966041954566, 0.1936674871335869) scale(1.627935196959593e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-43.58222088228565, -0.4028966041954566, 0.14891474602819416)"><path transform="translate(-0.4028966041954566, 0.14891474602819416) scale(1.4517857894832197e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-41.705452934934414, -0.4028966041954566, 0.10416200492280142)"><path transform="translate(-0.4028966041954566, 0.10416200492280142) scale(1.2768584863833268e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-39.23654302381311, -0.4028966041954566, 5.94092638174088e-2)"><path transform="translate(-0.4028966041954566, 5.94092638174088e-2) scale(1.10373450277274e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-35.85831318078913, -0.4028966041954566, 1.4656522712016007e-2)"><path transform="translate(-0.4028966041954566, 1.4656522712016007e-2) scale(9.33417780862898e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-30.998866461242095, -0.4028966041954566, -3.0096218393376617e-2)"><path transform="translate(-0.4028966041954566, -3.0096218393376617e-2) scale(7.67778807541083e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-23.558731336409213, -0.4028966041954566, -7.484895949876935e-2)"><path transform="translate(-0.4028966041954566, -7.484895949876935e-2) scale(6.10636130314575e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-11.361886054451027, -0.4028966041954566, -0.11960170060416198)"><path transform="translate(-0.4028966041954566, -0.11960170060416198) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(9.1787780290969, -0.4028966041954566, -0.16435444170955493)"><path transform="translate(-0.4028966041954566, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(38.43929639305065, -0.4028966041954566, -0.20910718281494756)"><path transform="translate(-0.4028966041954566, -0.20910718281494756) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(65.30004570377379, -0.4028966041954566, -0.2538599239203403)"><path transform="translate(-0.4028966041954566, -0.2538599239203403) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(82.46422166325871, -0.4028966041954566, -0.2986126650257329)"><path transform="translate(-0.4028966041954566, -0.2986126650257329) scale(5.171915072772692e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(92.634400797842, -0.4028966041954566, -0.34336540613112565)"><path transform="translate(-0.4028966041954566, -0.34336540613112565) scale(6.647850009477145e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(98.98525517530753, -0.4028966041954566, -0.3881181472365184)"><path transform="translate(-0.4028966041954566, -0.3881181472365184) scale(8.255711855609624e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(103.2314576873848, -0.4028966041954566, -0.43287088834191134)"><path transform="translate(-0.4028966041954566, -0.43287088834191134) scale(9.931631839884993e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(106.24009968580101, -0.4028966041954566, -0.47762362944730385)"><path transform="translate(-0.4028966041954566, -0.47762362944730385) scale(1.1646265840560128e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-51.99041554650731, -0.33302408272906536, 0.3726784515551578)"><path transform="translate(-0.33302408272906536, 0.3726784515551578) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-51.17700469994669, -0.33302408272906536, 0.32792571044976504)"><path transform="translate(-0.33302408272906536, 0.32792571044976504) scale(1.9451887666595963e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-50.20771941749776, -0.33302408272906536, 0.2831729693443723)"><path transform="translate(-0.33302408272906536, 0.2831729693443723) scale(1.7753331878843242e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-49.033762025031365, -0.33302408272906536, 0.23842022823897957)"><path transform="translate(-0.33302408272906536, 0.23842022823897957) scale(1.60609307182693e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-47.584041856356855, -0.33302408272906536, 0.1936674871335869)"><path transform="translate(-0.33302408272906536, 0.1936674871335869) scale(1.437685786268865e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-45.75118907129549, -0.33302408272906536, 0.14891474602819416)"><path transform="translate(-0.33302408272906536, 0.14891474602819416) scale(1.2704425693476653e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-43.36599869074594, -0.33302408272906536, 0.10416200492280142)"><path transform="translate(-0.33302408272906536, 0.10416200492280142) scale(1.1048921491638821e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-40.14816579886391, -0.33302408272906536, 5.94092638174088e-2)"><path transform="translate(-0.33302408272906536, 5.94092638174088e-2) scale(9.419275119983384e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-35.6060622921087, -0.33302408272906536, 1.4656522712016007e-2)"><path transform="translate(-0.33302408272906536, 1.4656522712016007e-2) scale(7.83164511285394e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-28.825452201069737, -0.33302408272906536, -3.0096218393376617e-2)"><path transform="translate(-0.33302408272906536, -3.0096218393376617e-2) scale(6.317786819104555e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-18.050279617662735, -0.33302408272906536, -7.484895949876935e-2)"><path transform="translate(-0.33302408272906536, -7.484895949876935e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-0.28010424375436155, -0.33302408272906536, -0.11960170060416198)"><path transform="translate(-0.33302408272906536, -0.11960170060416198) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(26.199886819317534, -0.33302408272906536, -0.16435444170955493)"><path transform="translate(-0.33302408272906536, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(53.75788062855396, -0.33302408272906536, -0.20910718281494756)"><path transform="translate(-0.33302408272906536, -0.20910718281494756) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(73.11399281814548, -0.33302408272906536, -0.2538599239203403)"><path transform="translate(-0.33302408272906536, -0.2538599239203403) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(84.88574350636186, -0.33302408272906536, -0.2986126650257329)"><path transform="translate(-0.33302408272906536, -0.2986126650257329) scale(6.059516427394274e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(92.2174881319955, -0.33302408272906536, -0.34336540613112565)"><path transform="translate(-0.33302408272906536, -0.34336540613112565) scale(7.554628419935828e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(97.07495644815147, -0.33302408272906536, -0.3881181472365184)"><path transform="translate(-0.33302408272906536, -0.3881181472365184) scale(9.132082211793452e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(100.48468678209167, -0.33302408272906536, -0.43287088834191134)"><path transform="translate(-0.33302408272906536, -0.43287088834191134) scale(1.075570937748031e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(102.99363450558369, -0.33302408272906536, -0.47762362944730385)"><path transform="translate(-0.33302408272906536, -0.47762362944730385) scale(1.2407396448606481e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-55.664740518472684, -0.263151561262674, 0.3726784515551578)"><path transform="translate(-0.263151561262674, 0.3726784515551578) scale(1.9269106414618056e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-54.71846087586577, -0.263151561262674, 0.32792571044976504)"><path transform="translate(-0.263151561262674, 0.32792571044976504) scale(1.7637503099708244e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-53.57964702570465, -0.263151561262674, 0.2831729693443723)"><path transform="translate(-0.263151561262674, 0.2831729693443723) scale(1.6011690389122e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-52.18413419268651, -0.263151561262674, 0.23842022823897957)"><path transform="translate(-0.263151561262674, 0.23842022823897957) scale(1.4393630625819394e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-50.436495555028856, -0.263151561262674, 0.1936674871335869)"><path transform="translate(-0.263151561262674, 0.1936674871335869) scale(1.2786267477981634e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-48.18913591473337, -0.263151561262674, 0.14891474602819416)"><path transform="translate(-0.263151561262674, 0.14891474602819416) scale(1.1194209636905865e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-45.20307683083907, -0.263151561262674, 0.10416200492280142)"><path transform="translate(-0.263151561262674, 0.10416200492280142) scale(9.625054946442748e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-41.07061797467062, -0.263151561262674, 5.94092638174088e-2)"><path transform="translate(-0.263151561262674, 5.94092638174088e-2) scale(8.092137912790932e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-35.05707566179679, -0.263151561262674, 1.4656522712016007e-2)"><path transform="translate(-0.263151561262674, 1.4656522712016007e-2) scale(6.6206773994626315e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-25.78659877946231, -0.263151561262674, -3.0096218393376617e-2)"><path transform="translate(-0.263151561262674, -3.0096218393376617e-2) scale(5.262480632403571e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-10.823579802176743, -0.263151561262674, -7.484895949876935e-2)"><path transform="translate(-0.263151561262674, -7.484895949876935e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(12.328075120417882, -0.263151561262674, -0.11960170060416198)"><path transform="translate(-0.263151561262674, -0.11960170060416198) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(39.874735447265955, -0.263151561262674, -0.16435444170955493)"><path transform="translate(-0.263151561262674, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(61.85657660644192, -0.263151561262674, -0.20910718281494756)"><path transform="translate(-0.263151561262674, -0.20910718281494756) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(75.82853980587181, -0.263151561262674, -0.2538599239203403)"><path transform="translate(-0.263151561262674, -0.2538599239203403) scale(5.444287607930679e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(84.51862353558559, -0.263151561262674, -0.2986126650257329)"><path transform="translate(-0.263151561262674, -0.2986126650257329) scale(6.8233833572340094e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(90.20229633078165, -0.263151561262674, -0.34336540613112565)"><path transform="translate(-0.263151561262674, -0.34336540613112565) scale(8.305812017631338e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(94.13817774211688, -0.263151561262674, -0.3881181472365184)"><path transform="translate(-0.263151561262674, -0.3881181472365184) scale(9.845005132310534e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(97.00019298833773, -0.263151561262674, -0.43287088834191134)"><path transform="translate(-0.263151561262674, -0.43287088834191134) scale(1.1418029549302839e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(99.16513267635787, -0.263151561262674, -0.47762362944730385)"><path transform="translate(-0.263151561262674, -0.47762362944730385) scale(1.3012622006068779e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-59.78409175059941, -0.19327903979628258, 0.3726784515551578)"><path transform="translate(-0.19327903979628258, 0.3726784515551578) scale(1.7712576698974185e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-58.70510428263088, -0.19327903979628258, 0.32792571044976504)"><path transform="translate(-0.19327903979628258, 0.32792571044976504) scale(1.6140899563541946e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-57.393911149976134, -0.19327903979628258, 0.2831729693443723)"><path transform="translate(-0.19327903979628258, 0.2831729693443723) scale(1.4576179782455276e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-55.76846387664084, -0.19327903979628258, 0.23842022823897957)"><path transform="translate(-0.19327903979628258, 0.23842022823897957) scale(1.3020925785341505e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-53.704278091348115, -0.19327903979628258, 0.1936674871335869)"><path transform="translate(-0.19327903979628258, 0.1936674871335869) scale(1.1478985690865222e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-51.00437186004463, -0.19327903979628258, 0.14891474602819416)"><path transform="translate(-0.19327903979628258, 0.14891474602819416) scale(9.956547072233911e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-47.341645462199146, -0.19327903979628258, 0.10416200492280142)"><path transform="translate(-0.19327903979628258, 0.10416200492280142) scale(8.464139627802389e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-42.143864562232416, -0.19327903979628258, 5.94092638174088e-2)"><path transform="translate(-0.19327903979628258, 5.94092638174088e-2) scale(7.020940293369813e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-34.36413564239526, -0.19327903979628258, 1.4656522712016007e-2)"><path transform="translate(-0.19327903979628258, 1.4656522712016007e-2) scale(5.664685206964e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-22.102785880742523, -0.19327903979628258, -3.0096218393376617e-2)"><path transform="translate(-0.19327903979628258, -3.0096218393376617e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-2.695691724372137, -0.19327903979628258, -7.484895949876935e-2)"><path transform="translate(-0.19327903979628258, -7.484895949876935e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(23.51782497656787, -0.19327903979628258, -0.11960170060416198)"><path transform="translate(-0.19327903979628258, -0.11960170060416198) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(48.170403827242176, -0.19327903979628258, -0.16435444170955493)"><path transform="translate(-0.19327903979628258, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(65.11563943465563, -0.19327903979628258, -0.20910718281494756)"><path transform="translate(-0.19327903979628258, -0.20910718281494756) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(75.72126365559959, -0.19327903979628258, -0.2538599239203403)"><path transform="translate(-0.19327903979628258, -0.2538599239203403) scale(6.0716031904660284e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(82.54698031827908, -0.19327903979628258, -0.2986126650257329)"><path transform="translate(-0.19327903979628258, -0.2986126650257329) scale(7.4606441867333265e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(87.18613431063683, -0.19327903979628258, -0.34336540613112565)"><path transform="translate(-0.19327903979628258, -0.34336540613112565) scale(8.921948833433327e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(90.50431461759553, -0.19327903979628258, -0.3881181472365184)"><path transform="translate(-0.19327903979628258, -0.3881181472365184) scale(1.0425173534218539e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(92.980140611468, -0.19327903979628258, -0.43287088834191134)"><path transform="translate(-0.19327903979628258, -0.43287088834191134) scale(1.1954514978766095e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(94.89166407397504, -0.19327903979628258, -0.47762362944730385)"><path transform="translate(-0.19327903979628258, -0.47762362944730385) scale(1.3501100935231887e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-64.39162950639505, -0.12340651832989136, 0.3726784515551578)"><path transform="translate(-0.12340651832989136, 0.3726784515551578) scale(1.646982697734208e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-63.19165610465717, -0.12340651832989136, 0.32792571044976504)"><path transform="translate(-0.12340651832989136, 0.32792571044976504) scale(1.4944657227283116e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-61.719748508263145, -0.12340651832989136, 0.2831729693443723)"><path transform="translate(-0.12340651832989136, 0.2831729693443723) scale(1.3427529976782315e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-59.87446828800514, -0.12340651832989136, 0.23842022823897957)"><path transform="translate(-0.12340651832989136, 0.23842022823897957) scale(1.1921516076942197e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-57.498919459638714, -0.12340651832989136, 0.1936674871335869)"><path transform="translate(-0.12340651832989136, 0.1936674871335869) scale(1.0431430032703883e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-54.33933237650934, -0.12340651832989136, 0.14891474602819416)"><path transform="translate(-0.12340651832989136, 0.14891474602819416) scale(8.965217350438483e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-49.964234165944355, -0.12340651832989136, 0.10416200492280142)"><path transform="translate(-0.12340651832989136, 0.10416200492280142) scale(7.536823894254886e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-43.602818972703616, -0.12340651832989136, 5.94092638174088e-2)"><path transform="translate(-0.12340651832989136, 5.94092638174088e-2) scale(6.172561003701874e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-33.84265246356403, -0.12340651832989136, 1.4656522712016007e-2)"><path transform="translate(-0.12340651832989136, 1.4656522712016007e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-18.32539679674549, -0.12340651832989136, -3.0096218393376617e-2)"><path transform="translate(-0.12340651832989136, -3.0096218393376617e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(4.864514437760529, -0.12340651832989136, -7.484895949876935e-2)"><path transform="translate(-0.12340651832989136, -7.484895949876935e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(31.29960133462856, -0.12340651832989136, -0.11960170060416198)"><path transform="translate(-0.12340651832989136, -0.11960170060416198) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(52.096694166575396, -0.12340651832989136, -0.16435444170955493)"><path transform="translate(-0.12340651832989136, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(65.4925947698703, -0.12340651832989136, -0.20910718281494756)"><path transform="translate(-0.12340651832989136, -0.20910718281494756) scale(5.302219796642787e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(73.96993059493624, -0.12340651832989136, -0.2538599239203403)"><path transform="translate(-0.12340651832989136, -0.2538599239203403) scale(6.594524115986752e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(79.58888167202291, -0.12340651832989136, -0.2986126650257329)"><path transform="translate(-0.12340651832989136, -0.2986126650257329) scale(7.98311746874318e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(83.51692630710276, -0.12340651832989136, -0.34336540613112565)"><path transform="translate(-0.12340651832989136, -0.34336540613112565) scale(9.42553889081021e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(86.39264883035322, -0.12340651832989136, -0.3881181472365184)"><path transform="translate(-0.12340651832989136, -0.3881181472365184) scale(1.0900440583003991e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(88.57883134719822, -0.12340651832989136, -0.43287088834191134)"><path transform="translate(-0.12340651832989136, -0.43287088834191134) scale(1.2396234471968757e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(90.29232286922854, -0.12340651832989136, -0.47762362944730385)"><path transform="translate(-0.12340651832989136, -0.47762362944730385) scale(1.3906180493703305e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-69.510938217655, -5.353399686350013e-2, 0.3726784515551578)"><path transform="translate(-5.353399686350013e-2, 0.3726784515551578) scale(1.5531828790181383e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-68.21651471267589, -5.353399686350013e-2, 0.32792571044976504)"><path transform="translate(-5.353399686350013e-2, 0.32792571044976504) scale(1.4038114048005803e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-66.61488605131503, -5.353399686350013e-2, 0.2831729693443723)"><path transform="translate(-5.353399686350013e-2, 0.2831729693443723) scale(1.2553267129686262e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-64.5856544366491, -5.353399686350013e-2, 0.23842022823897957)"><path transform="translate(-5.353399686350013e-2, 0.23842022823897957) scale(1.1080853504168285e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-61.93910496370308, -5.353399686350013e-2, 0.1936674871335869)"><path transform="translate(-5.353399686350013e-2, 0.1936674871335869) scale(9.626579988736846e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-58.36175317293706, -5.353399686350013e-2, 0.14891474602819416)"><path transform="translate(-5.353399686350013e-2, 0.14891474602819416) scale(8.200103616747298e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-53.3081525372487, -5.353399686350013e-2, 0.10416200492280142)"><path transform="translate(-5.353399686350013e-2, 0.10416200492280142) scale(6.818891810138115e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-45.78501490889715, -5.353399686350013e-2, 5.94092638174088e-2)"><path transform="translate(-5.353399686350013e-2, 5.94092638174088e-2) scale(5.517046389009111e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-33.98616710964858, -5.353399686350013e-2, 1.4656522712016007e-2)"><path transform="translate(-5.353399686350013e-2, 1.4656522712016007e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-15.28079551363096, -5.353399686350013e-2, -3.0096218393376617e-2)"><path transform="translate(-5.353399686350013e-2, -3.0096218393376617e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(10.494541973947667, -5.353399686350013e-2, -7.484895949876935e-2)"><path transform="translate(-5.353399686350013e-2, -7.484895949876935e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(35.54639887618863, -5.353399686350013e-2, -0.11960170060416198)"><path transform="translate(-5.353399686350013e-2, -0.11960170060416198) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(53.11090859263186, -5.353399686350013e-2, -0.16435444170955493)"><path transform="translate(-5.353399686350013e-2, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(64.14116533253902, -5.353399686350013e-2, -0.20910718281494756)"><path transform="translate(-5.353399686350013e-2, -0.20910718281494756) scale(5.6977543812395575e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(71.22050357908108, -5.353399686350013e-2, -0.2538599239203403)"><path transform="translate(-5.353399686350013e-2, -0.2538599239203403) scale(7.014230133020788e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(76.01381426210662, -5.353399686350013e-2, -0.2986126650257329)"><path transform="translate(-5.353399686350013e-2, -0.2986126650257329) scale(8.403533356639471e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(79.43044944555142, -5.353399686350013e-2, -0.34336540613112565)"><path transform="translate(-5.353399686350013e-2, -0.34336540613112565) scale(9.834848780762262e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(81.97239688734122, -5.353399686350013e-2, -0.3881181472365184)"><path transform="translate(-5.353399686350013e-2, -0.3881181472365184) scale(1.1292212243484572e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(83.93032810255283, -5.353399686350013e-2, -0.43287088834191134)"><path transform="translate(-5.353399686350013e-2, -0.43287088834191134) scale(1.2766706439425863e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(85.48142246054088, -5.353399686350013e-2, -0.47762362944730385)"><path transform="translate(-5.353399686350013e-2, -0.47762362944730385) scale(1.4253015765661181e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-75.13069166252536, 1.6338524602891313e-2, 0.3726784515551578)"><path transform="translate(1.6338524602891313e-2, 0.3726784515551578) scale(1.4896749752205429e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-73.78439010214682, 1.6338524602891313e-2, 0.32792571044976504)"><path transform="translate(1.6338524602891313e-2, 0.32792571044976504) scale(1.3418139480941034e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-72.10584553435906, 1.6338524602891313e-2, 0.2831729693443723)"><path transform="translate(1.6338524602891313e-2, 0.2831729693443723) scale(1.1948768701056338e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-69.95907870911456, 1.6338524602891313e-2, 0.23842022823897957)"><path transform="translate(1.6338524602891313e-2, 0.23842022823897957) scale(1.0492519821467941e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-67.12599014563611, 1.6338524602891313e-2, 0.1936674871335869)"><path transform="translate(1.6338524602891313e-2, 0.1936674871335869) scale(9.055725444582049e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-63.238481569620205, 1.6338524602891313e-2, 0.14891474602819416)"><path transform="translate(1.6338524602891313e-2, 0.14891474602819416) scale(7.649355975675533e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-57.64043087176548, 1.6338524602891313e-2, 0.10416200492280142)"><path transform="translate(1.6338524602891313e-2, 0.10416200492280142) scale(6.293840063804786e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-49.11004346535457, 1.6338524602891313e-2, 5.94092638174088e-2)"><path transform="translate(1.6338524602891313e-2, 5.94092638174088e-2) scale(5.03045634571105e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-35.43395925240447, 1.6338524602891313e-2, 1.4656522712016007e-2)"><path transform="translate(1.6338524602891313e-2, 1.4656522712016007e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-13.869686438505035, 1.6338524602891313e-2, -3.0096218393376617e-2)"><path transform="translate(1.6338524602891313e-2, -3.0096218393376617e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(13.531833527972587, 1.6338524602891313e-2, -7.484895949876935e-2)"><path transform="translate(1.6338524602891313e-2, -7.484895949876935e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(36.97705198118514, 1.6338524602891313e-2, -0.11960170060416198)"><path transform="translate(1.6338524602891313e-2, -0.11960170060416198) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(52.25580788843059, 1.6338524602891313e-2, -0.16435444170955493)"><path transform="translate(1.6338524602891313e-2, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(61.728030848321474, 1.6338524602891313e-2, -0.20910718281494756)"><path transform="translate(1.6338524602891313e-2, -0.20910718281494756) scale(5.993583322636539e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(67.86230320617709, 1.6338524602891313e-2, -0.2538599239203403)"><path transform="translate(1.6338524602891313e-2, -0.2538599239203403) scale(7.332745466817365e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(72.06964782000361, 1.6338524602891313e-2, -0.2986126650257329)"><path transform="translate(1.6338524602891313e-2, -0.2986126650257329) scale(8.729751629231695e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(75.10466241725233, 1.6338524602891313e-2, -0.34336540613112565)"><path transform="translate(1.6338524602891313e-2, -0.34336540613112565) scale(1.0160770803743944e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(77.3856399985983, 1.6338524602891313e-2, -0.3881181472365184)"><path transform="translate(1.6338524602891313e-2, -0.3881181472365184) scale(1.1613236221465414e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(79.15735653973898, 1.6338524602891313e-2, -0.43287088834191134)"><path transform="translate(1.6338524602891313e-2, -0.43287088834191134) scale(1.308000535688332e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(80.57073269256784, 1.6338524602891313e-2, -0.47762362944730385)"><path transform="translate(1.6338524602891313e-2, -0.47762362944730385) scale(1.4556755034273108e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-81.18963463293309, 8.621104606928265e-2, 0.3726784515551578)"><path transform="translate(8.621104606928265e-2, 0.3726784515551578) scale(1.4569826327456875e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-79.84737599030926, 8.621104606928265e-2, 0.32792571044976504)"><path transform="translate(8.621104606928265e-2, 0.32792571044976504) scale(1.3089290306267674e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-78.16396287234514, 8.621104606928265e-2, 0.2831729693443723)"><path transform="translate(8.621104606928265e-2, 0.2831729693443723) scale(1.1617766335335265e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-75.99481185341442, 8.621104606928265e-2, 0.23842022823897957)"><path transform="translate(8.621104606928265e-2, 0.23842022823897957) scale(1.0159171271041005e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-73.10428732733028, 8.621104606928265e-2, 0.1936674871335869)"><path transform="translate(8.621104606928265e-2, 0.1936674871335869) scale(8.71999538976022e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-69.08649525186826, 8.621104606928265e-2, 0.14891474602819416)"><path transform="translate(8.621104606928265e-2, 0.14891474602819416) scale(7.311714619139152e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-63.19891384794882, 8.621104606928265e-2, 0.10416200492280142)"><path transform="translate(8.621104606928265e-2, 0.10416200492280142) scale(5.956283584352402e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-54.015870624254035, 8.621104606928265e-2, 5.94092638174088e-2)"><path transform="translate(8.621104606928265e-2, 5.94092638174088e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-38.901296634433926, 8.621104606928265e-2, 1.4656522712016007e-2)"><path transform="translate(8.621104606928265e-2, 1.4656522712016007e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-14.912884226752979, 8.621104606928265e-2, -3.0096218393376617e-2)"><path transform="translate(8.621104606928265e-2, -3.0096218393376617e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(13.86968643850504, 8.621104606928265e-2, -7.484895949876935e-2)"><path transform="translate(8.621104606928265e-2, -7.484895949876935e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(36.30824821189891, 8.621104606928265e-2, -0.11960170060416198)"><path transform="translate(8.621104606928265e-2, -0.11960170060416198) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(50.17461072660589, 8.621104606928265e-2, -0.16435444170955493)"><path transform="translate(8.621104606928265e-2, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(58.652743308099524, 8.621104606928265e-2, -0.20910718281494756)"><path transform="translate(8.621104606928265e-2, -0.20910718281494756) scale(6.180817530816513e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(64.14793758266615, 8.621104606928265e-2, -0.2538599239203403)"><path transform="translate(8.621104606928265e-2, -0.2538599239203403) scale(7.547515349062496e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(67.93467556284212, 8.621104606928265e-2, -0.2986126650257329)"><path transform="translate(8.621104606928265e-2, -0.2986126650257329) scale(8.962185164937077e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(70.68045446971969, 8.621104606928265e-2, -0.34336540613112565)"><path transform="translate(8.621104606928265e-2, -0.34336540613112565) scale(1.0405278963492599e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(72.75387740565509, 8.621104606928265e-2, -0.3881181472365184)"><path transform="translate(8.621104606928265e-2, -0.3881181472365184) scale(1.186643122749144e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(74.37105655915897, 8.621104606928265e-2, -0.43287088834191134)"><path transform="translate(8.621104606928265e-2, -0.43287088834191134) scale(1.3339709226091304e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(75.66574559828108, 8.621104606928265e-2, -0.47762362944730385)"><path transform="translate(8.621104606928265e-2, -0.47762362944730385) scale(1.4821497454297462e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-87.56881101083859, 0.15608356753567387, 0.3726784515551578)"><path transform="translate(0.15608356753567387, 0.3726784515551578) scale(1.4562378013119066e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-86.29218525069348, 0.15608356753567387, 0.32792571044976504)"><path transform="translate(0.15608356753567387, 0.32792571044976504) scale(1.3063035502221857e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-84.68556278891644, 0.15608356753567387, 0.2831729693443723)"><path transform="translate(0.15608356753567387, 0.2831729693443723) scale(1.157185675744289e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-82.60586939275454, 0.15608356753567387, 0.23842022823897957)"><path transform="translate(0.15608356753567387, 0.23842022823897957) scale(1.0092461059839564e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-79.81704013985375, 0.15608356753567387, 0.1936674871335869)"><path transform="translate(0.15608356753567387, 0.1936674871335869) scale(8.630909617248493e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-75.90531569732417, 0.15608356753567387, 0.14891474602819416)"><path transform="translate(0.15608356753567387, 0.14891474602819416) scale(7.1980803374913985e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-70.09413507313377, 0.15608356753567387, 0.10416200492280142)"><path transform="translate(0.15608356753567387, 0.10416200492280142) scale(5.81524285098922e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-60.83262967516026, 0.15608356753567387, 5.94092638174088e-2)"><path transform="translate(0.15608356753567387, 5.94092638174088e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-45.077832371412455, 0.15608356753567387, 1.4656522712016007e-2)"><path transform="translate(0.15608356753567387, 1.4656522712016007e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-19.207443045498454, 0.15608356753567387, -3.0096218393376617e-2)"><path transform="translate(0.15608356753567387, -3.0096218393376617e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(11.479456791237874, 0.15608356753567387, -7.484895949876935e-2)"><path transform="translate(0.15608356753567387, -7.484895949876935e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(33.986167109648605, 0.15608356753567387, -0.11960170060416198)"><path transform="translate(0.15608356753567387, -0.11960170060416198) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(47.23521633893784, 0.15608356753567387, -0.16435444170955493)"><path transform="translate(0.15608356753567387, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(55.15724090078206, 0.15608356753567387, -0.20910718281494756)"><path transform="translate(0.15608356753567387, -0.20910718281494756) scale(6.247230396961342e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(60.24545105106578, 0.15608356753567387, -0.2538599239203403)"><path transform="translate(0.15608356753567387, -0.2538599239203403) scale(7.649314327492656e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(63.7388457946478, 0.15608356753567387, -0.2986126650257329)"><path transform="translate(0.15608356753567387, -0.2986126650257329) scale(9.092912672844945e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(66.2683562395399, 0.15608356753567387, -0.34336540613112565)"><path transform="translate(0.15608356753567387, -0.34336540613112565) scale(1.0561015160405618e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(68.17769977444287, 0.15608356753567387, -0.3881181472365184)"><path transform="translate(0.15608356753567387, -0.3881181472365184) scale(1.2044664823388966e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(69.6669910604888, 0.15608356753567387, -0.43287088834191134)"><path transform="translate(0.15608356753567387, -0.43287088834191134) scale(1.3538751395323827e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(70.85961693980484, 0.15608356753567387, -0.47762362944730385)"><path transform="translate(0.15608356753567387, -0.47762362944730385) scale(1.504016479723928e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-94.09858402644652, 0.22595608900206532, 0.3726784515551578)"><path transform="translate(0.22595608900206532, 0.3726784515551578) scale(1.489006647019036e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-92.94346737665964, 0.22595608900206532, 0.32792571044976504)"><path transform="translate(0.22595608900206532, 0.32792571044976504) scale(1.3356028461365122e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-91.4893547265514, 0.22595608900206532, 0.2831729693443723)"><path transform="translate(0.22595608900206532, 0.2831729693443723) scale(1.1828825626151762e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-89.60576920647642, 0.22595608900206532, 0.23842022823897957)"><path transform="translate(0.22595608900206532, 0.23842022823897957) scale(1.0311495419482841e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-87.07614336480545, 0.22595608900206532, 0.1936674871335869)"><path transform="translate(0.22595608900206532, 0.1936674871335869) scale(8.809140851248102e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-83.51692630710278, 0.22595608900206532, 0.14891474602819416)"><path transform="translate(0.22595608900206532, 0.14891474602819416) scale(7.330974692852383e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-78.19420769941097, 0.22595608900206532, 0.10416200492280142)"><path transform="translate(0.22595608900206532, 0.10416200492280142) scale(5.895220099059707e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-69.58361514857607, 0.22595608900206532, 5.94092638174088e-2)"><path transform="translate(0.22595608900206532, 5.94092638174088e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-54.41562639154035, 0.22595608900206532, 1.4656522712016007e-2)"><path transform="translate(0.22595608900206532, 1.4656522712016007e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-27.71081401525311, 0.22595608900206532, -3.0096218393376617e-2)"><path transform="translate(0.22595608900206532, -3.0096218393376617e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(5.957131114708201, 0.22595608900206532, -7.484895949876935e-2)"><path transform="translate(0.22595608900206532, -7.484895949876935e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(30.12027824799682, 0.22595608900206532, -0.11960170060416198)"><path transform="translate(0.22595608900206532, -0.11960170060416198) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(43.60281897270364, 0.22595608900206532, -0.16435444170955493)"><path transform="translate(0.22595608900206532, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(51.37445955253754, 0.22595608900206532, -0.20910718281494756)"><path transform="translate(0.22595608900206532, -0.20910718281494756) scale(6.175459898032524e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(56.26062458643972, 0.22595608900206532, -0.2538599239203403)"><path transform="translate(0.22595608900206532, -0.2538599239203403) scale(7.621834181700318e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(59.57217944927442, 0.22595608900206532, -0.2986126650257329)"><path transform="translate(0.22595608900206532, -0.2986126650257329) scale(9.105855824328888e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(61.95004679902866, 0.22595608900206532, -0.34336540613112565)"><path transform="translate(0.22595608900206532, -0.34336540613112565) scale(1.0611741937711963e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(63.734662459778875, 0.22595608900206532, -0.3881181472365184)"><path transform="translate(0.22595608900206532, -0.3881181472365184) scale(1.2131353027207099e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(65.12093733319522, 0.22595608900206532, -0.43287088834191134)"><path transform="translate(0.22595608900206532, -0.43287088834191134) scale(1.366010937905917e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(66.22765118863529, 0.22595608900206532, -0.47762362944730385)"><path transform="translate(0.22595608900206532, -0.47762362944730385) scale(1.5195250997729367e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-100.58287636403875, 0.2958286104684569, 0.3726784515551578)"><path transform="translate(0.2958286104684569, 0.3726784515551578) scale(1.5570916215649279e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-99.58845260191814, 0.2958286104684569, 0.32792571044976504)"><path transform="translate(0.2958286104684569, 0.32792571044976504) scale(1.3987897272766385e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-98.34072267484564, 0.2958286104684569, 0.2831729693443723)"><path transform="translate(0.2958286104684569, 0.2831729693443723) scale(1.2410166048807115e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-96.73057646172774, 0.2958286104684569, 0.23842022823897957)"><path transform="translate(0.2958286104684569, 0.23842022823897957) scale(1.0840031620399832e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-94.57741396792079, 0.2958286104684569, 0.1936674871335869)"><path transform="translate(0.2958286104684569, 0.1936674871335869) scale(9.28135025900734e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-91.56158862864692, 0.2958286104684569, 0.14891474602819416)"><path transform="translate(0.2958286104684569, 0.14891474602819416) scale(7.7410433829224225e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-87.0681122160906, 0.2958286104684569, 0.10416200492280142)"><path transform="translate(0.2958286104684569, 0.10416200492280142) scale(6.232748639966343e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-79.78933995423745, 0.2958286104684569, 5.94092638174088e-2)"><path transform="translate(0.2958286104684569, 5.94092638174088e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-66.68081278986507, 0.2958286104684569, 1.4656522712016007e-2)"><path transform="translate(0.2958286104684569, 1.4656522712016007e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-41.428362847402155, 0.2958286104684569, -3.0096218393376617e-2)"><path transform="translate(0.2958286104684569, -3.0096218393376617e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-3.995544058317841, 0.2958286104684569, -7.484895949876935e-2)"><path transform="translate(0.2958286104684569, -7.484895949876935e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(24.35444525945633, 0.2958286104684569, -0.11960170060416198)"><path transform="translate(0.2958286104684569, -0.11960170060416198) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(39.244649162137684, 0.2958286104684569, -0.16435444170955493)"><path transform="translate(0.2958286104684569, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(47.34164546219915, 0.2958286104684569, -0.20910718281494756)"><path transform="translate(0.2958286104684569, -0.20910718281494756) scale(5.942906547180401e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(52.2444635584233, 0.2958286104684569, -0.2538599239203403)"><path transform="translate(0.2958286104684569, -0.2538599239203403) scale(7.442206970762536e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(55.48774574545698, 0.2958286104684569, -0.2986126650257329)"><path transform="translate(0.2958286104684569, -0.2986126650257329) scale(8.97763130728909e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(57.77862344424654, 0.2958286104684569, -0.34336540613112565)"><path transform="translate(0.2958286104684569, -0.34336540613112565) scale(1.053339432995708e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(59.47791097025054, 0.2958286104684569, -0.3881181472365184)"><path transform="translate(0.2958286104684569, -0.3881181472365184) scale(1.2101654484322818e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(60.78643915334397, 0.2958286104684569, -0.43287088834191134)"><path transform="translate(0.2958286104684569, -0.43287088834191134) scale(1.3678113880659606e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(61.824093454548716, 0.2958286104684569, -0.47762362944730385)"><path transform="translate(0.2958286104684569, -0.47762362944730385) scale(1.5260231660543676e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-106.83353072736249, 0.36570113193484777, 0.3726784515551578)"><path transform="translate(0.36570113193484777, 0.3726784515551578) scale(1.6623818101615763e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-106.0164701064763, 0.36570113193484777, 0.32792571044976504)"><path transform="translate(0.36570113193484777, 0.32792571044976504) scale(1.4979375483778496e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-104.99816310847287, 0.36570113193484777, 0.2831729693443723)"><path transform="translate(0.36570113193484777, 0.2831729693443723) scale(1.3338729753727718e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-103.69477998584586, 0.36570113193484777, 0.23842022823897957)"><path transform="translate(0.36570113193484777, 0.23842022823897957) scale(1.1703477814413908e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-101.96927588754735, 0.36570113193484777, 0.1936674871335869)"><path transform="translate(0.36570113193484777, 0.1936674871335869) scale(1.007624604763681e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-99.58237053286808, 0.36570113193484777, 0.14891474602819416)"><path transform="translate(0.36570113193484777, 0.14891474602819416) scale(8.461662710312609e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-96.07963538795036, 0.36570113193484777, 0.10416200492280142)"><path transform="translate(0.36570113193484777, 0.10416200492280142) scale(6.868653229288393e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-90.49954129161453, 0.36570113193484777, 5.94092638174088e-2)"><path transform="translate(0.36570113193484777, 5.94092638174088e-2) scale(5.316645417542286e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-80.5238108777569, 0.36570113193484777, 1.4656522712016007e-2)"><path transform="translate(0.36570113193484777, 1.4656522712016007e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-60.10999550503807, 0.36570113193484777, -3.0096218393376617e-2)"><path transform="translate(0.36570113193484777, -3.0096218393376617e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-21.22823589712198, 0.36570113193484777, -7.484895949876935e-2)"><path transform="translate(0.36570113193484777, -7.484895949876935e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(15.404000803307879, 0.36570113193484777, -0.11960170060416198)"><path transform="translate(0.36570113193484777, -0.11960170060416198) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(33.83132719055512, 0.36570113193484777, -0.16435444170955493)"><path transform="translate(0.36570113193484777, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(42.98010374702864, 0.36570113193484777, -0.20910718281494756)"><path transform="translate(0.36570113193484777, -0.20910718281494756) scale(5.52263572283935e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(48.18913591473337, 0.36570113193484777, -0.2538599239203403)"><path transform="translate(0.36570113193484777, -0.2538599239203403) scale(7.082050994777183e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(51.50112356462062, 0.36570113193484777, -0.2986126650257329)"><path transform="translate(0.36570113193484777, -0.2986126650257329) scale(8.678769913334959e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(53.77871008604574, 0.36570113193484777, -0.34336540613112565)"><path transform="translate(0.36570113193484777, -0.34336540613112565) scale(1.0295450843704338e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(55.436227586309684, 0.36570113193484777, -0.3881181472365184)"><path transform="translate(0.36570113193484777, -0.3881181472365184) scale(1.1923977058523598e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(56.69461837524064, 0.36570113193484777, -0.43287088834191134)"><path transform="translate(0.36570113193484777, -0.43287088834191134) scale(1.3560081476886568e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(57.68167485000795, 0.36570113193484777, -0.47762362944730385)"><path transform="translate(0.36570113193484777, -0.47762362944730385) scale(1.5201317389553711e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-112.7010913153754, 0.4355736534012393, 0.3726784515551578)"><path transform="translate(0.4355736534012393, 0.3726784515551578) scale(1.806799380521019e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-112.05685727380069, 0.4355736534012393, 0.32792571044976504)"><path transform="translate(0.4355736534012393, 0.32792571044976504) scale(1.635143597896351e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-111.26162580070476, 0.4355736534012393, 0.2831729693443723)"><path transform="translate(0.4355736534012393, 0.2831729693443723) scale(1.4637430127361215e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-110.25571292911805, 0.4355736534012393, 0.23842022823897957)"><path transform="translate(0.4355736534012393, 0.23842022823897957) scale(1.2926991398729739e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-108.94357278375855, 0.4355736534012393, 0.1936674871335869)"><path transform="translate(0.4355736534012393, 0.1936674871335869) scale(1.1221751032815452e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-107.16255848690187, 0.4355736534012393, 0.14891474602819416)"><path transform="translate(0.4355736534012393, 0.14891474602819416) scale(9.52450154036252e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-104.61302150679268, 0.4355736534012393, 0.10416200492280142)"><path transform="translate(0.4355736534012393, 0.10416200492280142) scale(7.840434086991137e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-100.68214817986205, 0.4355736534012393, 5.94092638174088e-2)"><path transform="translate(0.4355736534012393, 5.94092638174088e-2) scale(6.180333929711916e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-93.92845955971286, 0.4355736534012393, 1.4656522712016007e-2)"><path transform="translate(0.4355736534012393, 1.4656522712016007e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-80.32428667615885, 0.4355736534012393, -3.0096218393376617e-2)"><path transform="translate(0.4355736534012393, -3.0096218393376617e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-48.58452366450957, 0.4355736534012393, -7.484895949876935e-2)"><path transform="translate(0.4355736534012393, -7.484895949876935e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-0.4962697850621825, 0.4355736534012393, -0.11960170060416198)"><path transform="translate(0.4355736534012393, -0.11960170060416198) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(26.356258735402186, 0.4355736534012393, -0.16435444170955493)"><path transform="translate(0.4355736534012393, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(38.00829503555947, 0.4355736534012393, -0.20910718281494756)"><path transform="translate(0.4355736534012393, -0.20910718281494756) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(44.004829582694995, 0.4355736534012393, -0.2538599239203403)"><path transform="translate(0.4355736534012393, -0.2538599239203403) scale(6.508839958144151e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(47.584041856356855, 0.4355736534012393, -0.2986126650257329)"><path transform="translate(0.4355736534012393, -0.2986126650257329) scale(8.175076039568057e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(49.94533368931976, 0.4355736534012393, -0.34336540613112565)"><path transform="translate(0.4355736534012393, -0.34336540613112565) scale(9.862382198785285e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(51.61474900490375, 0.4355736534012393, -0.3881181472365184)"><path transform="translate(0.4355736534012393, -0.3881181472365184) scale(1.1561537127360062e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(52.85558277392523, 0.4355736534012393, -0.43287088834191134)"><path transform="translate(0.4355736534012393, -0.43287088834191134) scale(1.3267989395154969e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(53.81327403685989, 0.4355736534012393, -0.47762362944730385)"><path transform="translate(0.4355736534012393, -0.47762362944730385) scale(1.497924524676646e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-118.09089015345515, 0.5054461748676304, 0.3726784515551578)"><path transform="translate(0.5054461748676304, 0.3726784515551578) scale(1.9923364124600204e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-117.60018688455187, 0.5054461748676304, 0.32792571044976504)"><path transform="translate(0.5054461748676304, 0.32792571044976504) scale(1.81254918982668e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-117.001474562297, 0.5054461748676304, 0.2831729693443723)"><path transform="translate(0.5054461748676304, 0.2831729693443723) scale(1.6329241848067548e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-116.25486952917166, 0.5054461748676304, 0.23842022823897957)"><path transform="translate(0.5054461748676304, 0.23842022823897957) scale(1.4535215388051245e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-115.2982327412062, 0.5054461748676304, 0.1936674871335869)"><path transform="translate(0.5054461748676304, 0.1936674871335869) scale(1.2744351599325049e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-114.02928246051185, 0.5054461748676304, 0.14891474602819416)"><path transform="translate(0.5054461748676304, 0.14891474602819416) scale(1.0958201187385296e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-112.2674057616658, 0.5054461748676304, 0.10416200492280142)"><path transform="translate(0.5054461748676304, 0.10416200492280142) scale(9.17951595156422e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-109.66267624485242, 0.5054461748676304, 5.94092638174088e-2)"><path transform="translate(0.5054461748676304, 5.94092638174088e-2) scale(7.413670967385031e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-105.44534693081516, 0.5054461748676304, 1.4656522712016007e-2)"><path transform="translate(0.5054461748676304, 1.4656522712016007e-2) scale(5.672670057925945e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-97.59015408885693, 0.5054461748676304, -3.0096218393376617e-2)"><path transform="translate(0.5054461748676304, -3.0096218393376617e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-79.39643565356667, 0.5054461748676304, -7.484895949876935e-2)"><path transform="translate(0.5054461748676304, -7.484895949876935e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-32.75993747532857, 0.5054461748676304, -0.11960170060416198)"><path transform="translate(0.5054461748676304, -0.11960170060416198) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(13.598839373504065, 0.5054461748676304, -0.16435444170955493)"><path transform="translate(0.5054461748676304, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(31.639432273787122, 0.5054461748676304, -0.20910718281494756)"><path transform="translate(0.5054461748676304, -0.20910718281494756) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(39.44563172930389, 0.5054461748676304, -0.2538599239203403)"><path transform="translate(0.5054461748676304, -0.2538599239203403) scale(5.687718822944676e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(43.6430719034802, 0.5054461748676304, -0.2986126650257329)"><path transform="translate(0.5054461748676304, -0.2986126650257329) scale(7.429028445431736e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(46.23802649355172, 0.5054461748676304, -0.34336540613112565)"><path transform="translate(0.5054461748676304, -0.34336540613112565) scale(9.19502290062427e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(47.994431356646444, 0.5054461748676304, -0.3881181472365184)"><path transform="translate(0.5054461748676304, -0.3881181472365184) scale(1.0973791182120775e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(49.26002512569782, 0.5054461748676304, -0.43287088834191134)"><path transform="translate(0.5054461748676304, -0.43287088834191134) scale(1.2759992317411276e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(50.21445989488682, 0.5054461748676304, -0.47762362944730385)"><path transform="translate(0.5054461748676304, -0.47762362944730385) scale(1.4550889293710335e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-122.96248746463611, 0.5753186963340218, 0.3726784515551578)"><path transform="translate(0.5753186963340218, 0.3726784515551578) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-122.59902737438321, 0.5753186963340218, 0.32792571044976504)"><path transform="translate(0.5753186963340218, 0.32792571044976504) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-122.16118372009922, 0.5753186963340218, 0.2831729693443723)"><path transform="translate(0.5753186963340218, 0.2831729693443723) scale(1.843801495170583e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-121.62359054033554, 0.5753186963340218, 0.23842022823897957)"><path transform="translate(0.5753186963340218, 0.23842022823897957) scale(1.6553156436528754e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-120.94791584143123, 0.5753186963340218, 0.1936674871335869)"><path transform="translate(0.5753186963340218, 0.1936674871335869) scale(1.46701295911936e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-120.07340854235245, 0.5753186963340218, 0.14891474602819416)"><path transform="translate(0.5753186963340218, 0.14891474602819416) scale(1.2789743468498116e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-118.89782799409808, 0.5753186963340218, 0.10416200492280142)"><path transform="translate(0.5753186963340218, 0.10416200492280142) scale(1.0913363153259461e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-117.23514669930253, 0.5753186963340218, 5.94092638174088e-2)"><path transform="translate(0.5753186963340218, 5.94092638174088e-2) scale(9.043482415375595e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-114.70928338000382, 0.5753186963340218, 1.4656522712016007e-2)"><path transform="translate(0.5753186963340218, 1.4656522712016007e-2) scale(7.1851774255650095e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-110.4374819547489, 0.5753186963340218, -3.0096218393376617e-2)"><path transform="translate(0.5753186963340218, -3.0096218393376617e-2) scale(5.350523024326276e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-101.83011332616807, 0.5753186963340218, -7.484895949876935e-2)"><path transform="translate(0.5753186963340218, -7.484895949876935e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-78.55895613123263, 0.5753186963340218, -0.11960170060416198)"><path transform="translate(0.5753186963340218, -0.11960170060416198) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-17.10272896905237, 0.5753186963340218, -0.16435444170955493)"><path transform="translate(0.5753186963340218, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(21.274969971706692, 0.5753186963340218, -0.20910718281494756)"><path transform="translate(0.5753186963340218, -0.20910718281494756) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(33.85400350068811, 0.5753186963340218, -0.2538599239203403)"><path transform="translate(0.5753186963340218, -0.2538599239203403) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(39.45323630284368, 0.5753186963340218, -0.2986126650257329)"><path transform="translate(0.5753186963340218, -0.2986126650257329) scale(6.401373393287033e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(42.5608834906009, 0.5753186963340218, -0.34336540613112565)"><path transform="translate(0.5753186963340218, -0.34336540613112565) scale(8.251833385300859e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(44.52649194126508, 0.5753186963340218, -0.3881181472365184)"><path transform="translate(0.5753186963340218, -0.3881181472365184) scale(1.0117660237159754e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(45.87894579427057, 0.5753186963340218, -0.43287088834191134)"><path transform="translate(0.5753186963340218, -0.43287088834191134) scale(1.199168314657273e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(46.865427502305316, 0.5753186963340218, -0.47762362944730385)"><path transform="translate(0.5753186963340218, -0.47762362944730385) scale(1.3870580458594534e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-127.31818033121762, 0.6451912178004133, 0.3726784515551578)"><path transform="translate(0.6451912178004133, 0.3726784515551578) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-127.0548758414739, 0.6451912178004133, 0.32792571044976504)"><path transform="translate(0.6451912178004133, 0.32792571044976504) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-126.74181527940952, 0.6451912178004133, 0.2831729693443723)"><path transform="translate(0.6451912178004133, 0.2831729693443723) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-126.36344897397524, 0.6451912178004133, 0.23842022823897957)"><path transform="translate(0.6451912178004133, 0.23842022823897957) scale(1.9007311291415578e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-125.89700911770163, 0.6451912178004133, 0.1936674871335869)"><path transform="translate(0.6451912178004133, 0.1936674871335869) scale(1.702623582808729e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-125.30778402878447, 0.6451912178004133, 0.14891474602819416)"><path transform="translate(0.6451912178004133, 0.14891474602819416) scale(1.5046585859368258e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-124.54013527394423, 0.6451912178004133, 0.10416200492280142)"><path transform="translate(0.6451912178004133, 0.10416200492280142) scale(1.3069009188835499e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-123.4990190709214, 0.6451912178004133, 5.94092638174088e-2)"><path transform="translate(0.6451912178004133, 5.94092638174088e-2) scale(1.1094614546581638e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-122.00790156551338, 0.6451912178004133, 1.4656522712016007e-2)"><path transform="translate(0.6451912178004133, 1.4656522712016007e-2) scale(9.12546756618001e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-119.69891108811147, 0.6451912178004133, -3.0096218393376617e-2)"><path transform="translate(0.6451912178004133, -3.0096218393376617e-2) scale(7.165895636304934e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-115.6653128512798, 0.6451912178004133, -7.484895949876935e-2)"><path transform="translate(0.6451912178004133, -7.484895949876935e-2) scale(5.226679428112383e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-106.99426854078206, 0.6451912178004133, -0.11960170060416198)"><path transform="translate(0.6451912178004133, -0.11960170060416198) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-79.59038228090766, 0.6451912178004133, -0.16435444170955493)"><path transform="translate(0.6451912178004133, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-6.0903191370262615, 0.6451912178004133, -0.20910718281494756)"><path transform="translate(0.6451912178004133, -0.20910718281494756) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(24.987033159015706, 0.6451912178004133, -0.2538599239203403)"><path transform="translate(0.6451912178004133, -0.2538599239203403) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(34.42180499789803, 0.6451912178004133, -0.2986126650257329)"><path transform="translate(0.6451912178004133, -0.2986126650257329) scale(5.0539093567132124e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(38.698558431937975, 0.6451912178004133, -0.34336540613112565)"><path transform="translate(0.6451912178004133, -0.34336540613112565) scale(6.99023683351876e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(41.11242232647051, 0.6451912178004133, -0.3881181472365184)"><path transform="translate(0.6451912178004133, -0.3881181472365184) scale(8.948577417462493e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(42.65775470761334, 0.6451912178004133, -0.43287088834191134)"><path transform="translate(0.6451912178004133, -0.43287088834191134) scale(1.0917091197236798e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(43.73040465399771, 0.6451912178004133, -0.47762362944730385)"><path transform="translate(0.6451912178004133, -0.47762362944730385) scale(1.289111857931961e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-131.1880961936573, 0.7150637392668044, 0.3726784515551578)"><path transform="translate(0.7150637392668044, 0.3726784515551578) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-131.00070554384482, 0.7150637392668044, 0.32792571044976504)"><path transform="translate(0.7150637392668044, 0.32792571044976504) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-130.78076112578594, 0.7150637392668044, 0.2831729693443723)"><path transform="translate(0.7150637392668044, 0.2831729693443723) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-130.51898165442338, 0.7150637392668044, 0.23842022823897957)"><path transform="translate(0.7150637392668044, 0.23842022823897957) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-130.20219152477122, 0.7150637392668044, 0.1936674871335869)"><path transform="translate(0.7150637392668044, 0.1936674871335869) scale(1.9841935288612878e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-129.81104216214717, 0.7150637392668044, 0.14891474602819416)"><path transform="translate(0.7150637392668044, 0.14891474602819416) scale(1.7758176327860222e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-129.3159246876593, 0.7150637392668044, 0.10416200492280142)"><path transform="translate(0.7150637392668044, 0.10416200492280142) scale(1.5675465013628296e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-128.66914833282732, 0.7150637392668044, 5.94092638174088e-2)"><path transform="translate(0.7150637392668044, 5.94092638174088e-2) scale(1.3594282868317483e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-127.78870546079273, 0.7150637392668044, 1.4656522712016007e-2)"><path transform="translate(0.7150637392668044, 1.4656522712016007e-2) scale(1.1515459019179879e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-126.52082452593937, 0.7150637392668044, -3.0096218393376617e-2)"><path transform="translate(0.7150637392668044, -3.0096218393376617e-2) scale(9.440551496031777e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-124.54032683877954, 0.7150637392668044, -7.484895949876935e-2)"><path transform="translate(0.7150637392668044, -7.484895949876935e-2) scale(7.372867494013445e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-121.02490089045055, 0.7150637392668044, -0.11960170060416198)"><path transform="translate(0.7150637392668044, -0.11960170060416198) scale(5.320834899484096e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-113.18355619766865, 0.7150637392668044, -0.16435444170955493)"><path transform="translate(0.7150637392668044, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-85.025680737497, 0.7150637392668044, -0.20910718281494756)"><path transform="translate(0.7150637392668044, -0.20910718281494756) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-0.6898616587521303, 0.7150637392668044, -0.2538599239203403)"><path transform="translate(0.7150637392668044, -0.2538599239203403) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(26.413551735419986, 0.7150637392668044, -0.2986126650257329)"><path transform="translate(0.7150637392668044, -0.2986126650257329) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(34.07645748390228, 0.7150637392668044, -0.34336540613112565)"><path transform="translate(0.7150637392668044, -0.34336540613112565) scale(5.368987322348765e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(37.537422287154754, 0.7150637392668044, -0.3881181472365184)"><path transform="translate(0.7150637392668044, -0.3881181472365184) scale(7.421577477884566e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(39.49476431920491, 0.7150637392668044, -0.43287088834191134)"><path transform="translate(0.7150637392668044, -0.43287088834191134) scale(9.489496617902375e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(40.750752273812985, 0.7150637392668044, -0.47762362944730385)"><path transform="translate(0.7150637392668044, -0.47762362944730385) scale(1.1564524472296887e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g></g></svg>
diff --git a/other/bar.svg b/other/bar.svg
--- a/other/bar.svg
+++ b/other/bar.svg
@@ -1,29 +1,29 @@
-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.8200000000000001 -0.7528062429696287 1.59 1.3974338131537578" width="450.0" xmlns:xlink="http://www.w3.org/1999/xlink"><g transform="translate(-5.3787500000000044e-2, -0.57175)" fill-opacity="1.0" font-size="0.12" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text transform="rotate(0.0, -0.2287553486975452, -5.005624296962874e-2)" x="-0.2287553486975452" y="-5.005624296962874e-2">Default Bar Chart</text></g><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="0.8998875140607423" width="0.9651785044022864" x="-0.7113446008986885" y="-0.4999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.7113446008986885,0.39988751406074247
-0.2538339035035979,0.39988751406074247"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.7113446008986885,0.28740157480314965
-0.2538339035035979,0.28740157480314965"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.7113446008986885,0.1749156355455569
-0.2538339035035979,0.1749156355455569"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.7113446008986885,6.2429696287964076e-2
-0.2538339035035979,6.2429696287964076e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.7113446008986885,-5.005624296962874e-2
-0.2538339035035979,-5.005624296962874e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.7113446008986885,-0.1625421822272215
-0.2538339035035979,-0.1625421822272215"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.7113446008986885,-0.27502812148481426
-0.2538339035035979,-0.27502812148481426"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.7113446008986885,-0.387514060742407
-0.2538339035035979,-0.387514060742407"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.7113446008986885,-0.4999999999999999
-0.2538339035035979,-0.4999999999999999"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.4129358830146232">-4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.30044994375703044">-2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.18796400449943768">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="7.547806524184486e-2">2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-3.700787401574801e-2">4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.14949381327334077">6</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.2619797525309334">8</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.3744656917885262">10</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.48695163104611905">12</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><g transform="rotate(-90.0, -0.7290395401460636, 0.39988751406074247)"><polyline points="-0.7290395401460636,0.4148875140607425
--0.7290395401460636,0.38488751406074245"/></g><g transform="rotate(-90.0, -0.7290395401460636, 0.28740157480314965)"><polyline points="-0.7290395401460636,0.30240157480314966
--0.7290395401460636,0.27240157480314964"/></g><g transform="rotate(-90.0, -0.7290395401460636, 0.1749156355455569)"><polyline points="-0.7290395401460636,0.1899156355455569
--0.7290395401460636,0.15991563554555688"/></g><g transform="rotate(-90.0, -0.7290395401460636, 6.2429696287964076e-2)"><polyline points="-0.7290395401460636,7.742969628796408e-2
--0.7290395401460636,4.742969628796408e-2"/></g><g transform="rotate(-90.0, -0.7290395401460636, -5.005624296962874e-2)"><polyline points="-0.7290395401460636,-3.505624296962874e-2
--0.7290395401460636,-6.505624296962874e-2"/></g><g transform="rotate(-90.0, -0.7290395401460636, -0.1625421822272215)"><polyline points="-0.7290395401460636,-0.14754218222722149
--0.7290395401460636,-0.1775421822272215"/></g><g transform="rotate(-90.0, -0.7290395401460636, -0.27502812148481426)"><polyline points="-0.7290395401460636,-0.26002812148481425
--0.7290395401460636,-0.29002812148481427"/></g><g transform="rotate(-90.0, -0.7290395401460636, -0.387514060742407)"><polyline points="-0.7290395401460636,-0.372514060742407
--0.7290395401460636,-0.40251406074240703"/></g><g transform="rotate(-90.0, -0.7290395401460636, -0.4999999999999999)"><polyline points="-0.7290395401460636,-0.4849999999999999
--0.7290395401460636,-0.5149999999999999"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="0.8998875140607423" width="3.217261681340955e-3" x="-0.7209963859427113" y="-0.4999999999999999"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, -0.6630856756785741, 0.5)" x="-0.6630856756785741" y="0.5">row 1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, -0.5665678252383455, 0.5)" x="-0.5665678252383455" y="0.5">row 2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, -0.47004997479811683, 0.5)" x="-0.47004997479811683" y="0.5">row 3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, -0.3735321243578883, 0.5)" x="-0.3735321243578883" y="0.5">row 4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, -0.27701427391765954, 0.5)" x="-0.27701427391765954" y="0.5">row 5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, -0.1804964234774309, 0.5)" x="-0.1804964234774309" y="0.5">row 6</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, -8.397857303720235e-2, 0.5)" x="-8.397857303720235e-2" y="0.5">row 7</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, 1.2539277403026294e-2, 0.5)" x="1.2539277403026294e-2" y="0.5">row 8</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, 0.10905712784325483, 0.5)" x="0.10905712784325483" y="0.5">row 9</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, 0.20557497828348348, 0.5)" x="0.20557497828348348" y="0.5">row 10</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="-0.6630856756785741,0.4396344206974129
--0.6630856756785741,0.40963442069741285"/><polyline points="-0.5665678252383455,0.4396344206974129
--0.5665678252383455,0.40963442069741285"/><polyline points="-0.47004997479811683,0.4396344206974129
--0.47004997479811683,0.40963442069741285"/><polyline points="-0.3735321243578883,0.4396344206974129
--0.3735321243578883,0.40963442069741285"/><polyline points="-0.27701427391765954,0.4396344206974129
--0.27701427391765954,0.40963442069741285"/><polyline points="-0.1804964234774309,0.4396344206974129
--0.1804964234774309,0.40963442069741285"/><polyline points="-8.397857303720235e-2,0.4396344206974129
--8.397857303720235e-2,0.40963442069741285"/><polyline points="1.2539277403026294e-2,0.4396344206974129
-1.2539277403026294e-2,0.40963442069741285"/><polyline points="0.10905712784325483,0.4396344206974129
-0.10905712784325483,0.40963442069741285"/><polyline points="0.20557497828348348,0.4396344206974129
-0.20557497828348348,0.40963442069741285"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.499437570303688e-3" width="0.9651785044022864" x="-0.7113446008986885" y="0.4088863892013499"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#a6cee3" stroke-width="2.0e-3" fill="#a6cee3"><rect height="5.624296962879638e-2" width="3.860714017609146e-2" x="-0.7016928158546656" y="0.11867266591676051"/><rect height="0.11248593925759282" width="3.860714017609146e-2" x="-0.6051749654144369" y="6.2429696287964076e-2"/><rect height="0.1687289088863892" width="3.860714017609146e-2" x="-0.5086571149742084" y="6.186726659167696e-3"/><rect height="0.281214848143982" width="3.860714017609135e-2" x="-0.41213926453397975" y="-0.10629921259842512"/><rect height="0.44994375703037115" width="3.860714017609146e-2" x="-0.3156214140937512" y="-0.27502812148481426"/><rect height="0.0" width="3.860714017609135e-2" x="-0.21910356365352246" y="0.1749156355455569"/><rect height="0.11248593925759276" width="3.860714017609157e-2" x="-0.12258571321329392" y="0.1749156355455569"/><rect height="0.6186726659167604" width="3.860714017609124e-2" x="-2.6067862773065276e-2" y="-0.4437570303712035"/><rect height="0.11248593925759282" width="3.860714017609146e-2" x="7.044998766716337e-2" y="6.2429696287964076e-2"/><rect height="5.624296962879638e-2" width="3.860714017609146e-2" x="0.16696783810739202" y="0.11867266591676051"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b4" stroke-width="2.0e-3" fill="#1f78b4"><rect height="5.624296962879638e-2" width="3.860714017609146e-2" x="-0.6630856756785741" y="0.11867266591676051"/><rect height="0.11248593925759282" width="3.860714017609146e-2" x="-0.5665678252383455" y="6.2429696287964076e-2"/><rect height="0.1687289088863892" width="3.8607140176091403e-2" x="-0.47004997479811694" y="6.186726659167696e-3"/><rect height="0.22497187851518563" width="3.860714017609146e-2" x="-0.3735321243578884" y="-5.005624296962874e-2"/><rect height="0.281214848143982" width="3.860714017609157e-2" x="-0.27701427391765976" y="-0.10629921259842512"/><rect height="0.3374578177727784" width="3.860714017609146e-2" x="-0.1804964234774311" y="-0.1625421822272215"/><rect height="0.39370078740157477" width="3.860714017609124e-2" x="-8.397857303720235e-2" y="-0.21878515185601788"/><rect height="0.44994375703037115" width="3.860714017609146e-2" x="1.2539277403025961e-2" y="-0.27502812148481426"/><rect height="0.5061867266591675" width="3.860714017609157e-2" x="0.10905712784325483" y="-0.33127109111361064"/><rect height="0.5624296962879639" width="3.860714017609146e-2" x="0.20557497828348348" y="-0.387514060742407"/></g><g fill-opacity="1.0" font-size="4.0e-2" stroke="none" stroke-width="0.0" fill="#a6cee3" text-anchor="middle"><text x="-0.6823892457666199" y="8.942632170978637e-2">1</text><text x="-0.5858713953263912" y="3.318335208098999e-2">2</text><text x="-0.4893535448861627" y="-2.3059617547806388e-2">3</text><text x="-0.392835694445934" y="-0.13554555680539915">5</text><text x="-0.2963178440057055" y="-0.3042744656917884">8</text><text x="-0.19979999356547673" y="0.1456692913385828">0</text><text x="-0.1032821431252482" y="0.360517435320585">-2</text><text x="-6.764292685019546e-3" y="-0.4730033745781774">11</text><text x="8.975355775520888e-2" y="3.318335208098999e-2">2</text><text x="0.18627140819543786" y="8.942632170978637e-2">1</text></g><g fill-opacity="1.0" font-size="4.0e-2" stroke="none" stroke-width="0.0" fill="#1f78b4" text-anchor="middle"><text x="-0.6437821055905284" y="8.942632170978637e-2">1</text><text x="-0.5472642551502997" y="3.318335208098999e-2">2</text><text x="-0.4507464047100712" y="-2.3059617547806388e-2">3</text><text x="-0.35422855426984257" y="-7.930258717660277e-2">4</text><text x="-0.2577107038296139" y="-0.13554555680539915">5</text><text x="-0.16119285338938538" y="-0.19178852643419553">6</text><text x="-6.467500294915673e-2" y="-0.24803149606299202">7</text><text x="3.184284749107191e-2" y="-0.3042744656917884">8</text><text x="0.12836069793130056" y="-0.3605174353205848">9</text><text x="0.22487854837152932" y="-0.41676040494938105">10</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="8.0e-3" fill="#ffffff"><rect height="0.23217097862767155" width="0.3091145023432389" x="0.41257359486096057" y="-0.19965013714999813"/></g><g fill-opacity="1.0" font-size="4.8e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="0.4383116883116882" y="-2.6151824439087035e-2">column 2</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b4" stroke-width="8.0e-4" fill="#1f78b4"><rect height="4.319460067491565e-2" width="3.088571214087321e-2" x="0.6648069106780914" y="-6.934642511400269e-2"/></g><g fill-opacity="1.0" font-size="4.8e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="0.4383116883116882" y="-0.1201000809070285">column 1</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#a6cee3" stroke-width="8.0e-4" fill="#a6cee3"><rect height="4.319460067491554e-2" width="3.088571214087321e-2" x="0.6648069106780914" y="-0.16329468158194405"/></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.8200000000000001 -0.5532016310461193 1.59 1.1978292012302485" width="398.2203802596314" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="0.8998875140607425" width="0.9464649808641427" x="-0.6830110786937028" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6830110786937028,0.39988751406074247
+0.26345390217043985,0.39988751406074247"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6830110786937028,0.28740157480314965
+0.26345390217043985,0.28740157480314965"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6830110786937028,0.17491563554555684
+0.26345390217043985,0.17491563554555684"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6830110786937028,6.2429696287963965e-2
+0.26345390217043985,6.2429696287963965e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6830110786937028,-5.005624296962885e-2
+0.26345390217043985,-5.005624296962885e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6830110786937028,-0.1625421822272216
+0.26345390217043985,-0.1625421822272216"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6830110786937028,-0.27502812148481437
+0.26345390217043985,-0.27502812148481437"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6830110786937028,-0.38751406074240724
+0.26345390217043985,-0.38751406074240724"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6830110786937028,-0.5
+0.26345390217043985,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.41293588301462314">-4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.3004499437570304">-2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.18796400449943768">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="7.54780652418448e-2">2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-3.700787401574801e-2">4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.14949381327334088">6</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.26197975253093353">8</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.3744656917885263">10</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.48695163104611927">12</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><g transform="rotate(-90.0, -0.7294459354989004, 0.39988751406074247)"><polyline points="-0.7294459354989004,0.4148875140607425
+-0.7294459354989004,0.38488751406074245"/></g><g transform="rotate(-90.0, -0.7294459354989004, 0.28740157480314965)"><polyline points="-0.7294459354989004,0.30240157480314966
+-0.7294459354989004,0.27240157480314964"/></g><g transform="rotate(-90.0, -0.7294459354989004, 0.17491563554555684)"><polyline points="-0.7294459354989004,0.18991563554555685
+-0.7294459354989004,0.15991563554555682"/></g><g transform="rotate(-90.0, -0.7294459354989004, 6.2429696287963965e-2)"><polyline points="-0.7294459354989004,7.742969628796396e-2
+-0.7294459354989004,4.7429696287963966e-2"/></g><g transform="rotate(-90.0, -0.7294459354989004, -5.005624296962885e-2)"><polyline points="-0.7294459354989004,-3.505624296962885e-2
+-0.7294459354989004,-6.505624296962885e-2"/></g><g transform="rotate(-90.0, -0.7294459354989004, -0.1625421822272216)"><polyline points="-0.7294459354989004,-0.1475421822272216
+-0.7294459354989004,-0.17754218222722162"/></g><g transform="rotate(-90.0, -0.7294459354989004, -0.27502812148481437)"><polyline points="-0.7294459354989004,-0.26002812148481436
+-0.7294459354989004,-0.2900281214848144"/></g><g transform="rotate(-90.0, -0.7294459354989004, -0.38751406074240724)"><polyline points="-0.7294459354989004,-0.3725140607424072
+-0.7294459354989004,-0.40251406074240725"/></g><g transform="rotate(-90.0, -0.7294459354989004, -0.5)"><polyline points="-0.7294459354989004,-0.485
+-0.7294459354989004,-0.515"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="0.8998875140607425" width="3.1548832695471596e-3" x="-0.7215587273250326" y="-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, -0.6356878296504958, 0.5)" x="-0.6356878296504958" y="0.5">row 1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, -0.5410413315640814, 0.5)" x="-0.5410413315640814" y="0.5">row 2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, -0.4463948334776671, 0.5)" x="-0.4463948334776671" y="0.5">row 3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, -0.3517483353912529, 0.5)" x="-0.3517483353912529" y="0.5">row 4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, -0.2571018373048386, 0.5)" x="-0.2571018373048386" y="0.5">row 5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, -0.16245533921842426, 0.5)" x="-0.16245533921842426" y="0.5">row 6</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, -6.780884113201002e-2, 0.5)" x="-6.780884113201002e-2" y="0.5">row 7</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, 2.68376569544041e-2, 0.5)" x="2.68376569544041e-2" y="0.5">row 8</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, 0.12148415504081833, 0.5)" x="0.12148415504081833" y="0.5">row 9</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, 0.21613065312723245, 0.5)" x="0.21613065312723245" y="0.5">row 10</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="-0.6356878296504958,0.4396344206974129
+-0.6356878296504958,0.40963442069741285"/><polyline points="-0.5410413315640814,0.4396344206974129
+-0.5410413315640814,0.40963442069741285"/><polyline points="-0.4463948334776671,0.4396344206974129
+-0.4463948334776671,0.40963442069741285"/><polyline points="-0.3517483353912529,0.4396344206974129
+-0.3517483353912529,0.40963442069741285"/><polyline points="-0.2571018373048386,0.4396344206974129
+-0.2571018373048386,0.40963442069741285"/><polyline points="-0.16245533921842426,0.4396344206974129
+-0.16245533921842426,0.40963442069741285"/><polyline points="-6.780884113201002e-2,0.4396344206974129
+-6.780884113201002e-2,0.40963442069741285"/><polyline points="2.68376569544041e-2,0.4396344206974129
+2.68376569544041e-2,0.40963442069741285"/><polyline points="0.12148415504081833,0.4396344206974129
+0.12148415504081833,0.40963442069741285"/><polyline points="0.21613065312723245,0.4396344206974129
+0.21613065312723245,0.40963442069741285"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.499437570303744e-3" width="0.9464649808641427" x="-0.6830110786937028" y="0.4088863892013499"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#a6cee3" stroke-width="2.0e-3" fill="#a6cee3"><rect height="5.624296962879638e-2" width="3.785859923456569e-2" x="-0.6735464288850614" y="0.11867266591676046"/><rect height="0.11248593925759287" width="3.785859923456569e-2" x="-0.5788999307986471" y="6.2429696287963965e-2"/><rect height="0.1687289088863892" width="3.785859923456569e-2" x="-0.484253432712233" y="6.186726659167641e-3"/><rect height="0.28121484814398207" width="3.785859923456575e-2" x="-0.3896069346258187" y="-0.10629921259842523"/><rect height="0.4499437570303712" width="3.785859923456564e-2" x="-0.2949604365394044" y="-0.27502812148481437"/><rect height="0.0" width="3.785859923456558e-2" x="-0.20031393845299017" y="0.17491563554555684"/><rect height="0.11248593925759282" width="3.7858599234565804e-2" x="-0.10566744036657583" y="0.17491563554555684"/><rect height="0.6186726659167605" width="3.785859923456558e-2" x="-1.1020942280161594e-2" y="-0.44375703037120373"/><rect height="0.11248593925759287" width="3.785859923456569e-2" x="8.362555580625264e-2" y="6.2429696287963965e-2"/><rect height="5.624296962879638e-2" width="3.785859923456569e-2" x="0.17827205389266676" y="0.11867266591676046"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b4" stroke-width="2.0e-3" fill="#1f78b4"><rect height="5.624296962879638e-2" width="3.7858599234565804e-2" x="-0.6356878296504958" y="0.11867266591676046"/><rect height="0.11248593925759287" width="3.785859923456569e-2" x="-0.5410413315640814" y="6.2429696287963965e-2"/><rect height="0.1687289088863892" width="3.785859923456575e-2" x="-0.4463948334776673" y="6.186726659167641e-3"/><rect height="0.22497187851518569" width="3.785859923456564e-2" x="-0.35174833539125294" y="-5.005624296962885e-2"/><rect height="0.28121484814398207" width="3.785859923456575e-2" x="-0.25710183730483877" y="-0.10629921259842523"/><rect height="0.33745781777277845" width="3.7858599234565804e-2" x="-0.1624553392184246" y="-0.1625421822272216"/><rect height="0.3937007874015748" width="3.785859923456536e-2" x="-6.780884113201002e-2" y="-0.218785151856018"/><rect height="0.4499437570303712" width="3.785859923456569e-2" x="2.6837656954403988e-2" y="-0.27502812148481437"/><rect height="0.5061867266591675" width="3.7858599234565804e-2" x="0.12148415504081833" y="-0.33127109111361075"/><rect height="0.562429696287964" width="3.7858599234565915e-2" x="0.21613065312723245" y="-0.38751406074240724"/></g><g></g><g fill-opacity="1.0" font-size="4.0e-2" stroke="none" stroke-width="0.0" fill="#a6cee3" text-anchor="middle"><text x="-0.6546171292677786" y="8.942632170978632e-2">1</text><text x="-0.5599706311813644" y="3.3183352080989936e-2">2</text><text x="-0.4653241330949501" y="-2.30596175478065e-2">3</text><text x="-0.3706776350085358" y="-0.13554555680539926">5</text><text x="-0.27603113692212167" y="-0.3042744656917884">8</text><text x="-0.1813846388357072" y="0.14566929133858275">0</text><text x="-8.673814074929309e-2" y="0.3605174353205849">-2</text><text x="7.908357337121141e-3" y="-0.47300337457817765">11</text><text x="0.10255485542353537" y="3.3183352080989936e-2">2</text><text x="0.19720135350994994" y="8.942632170978632e-2">1</text></g><g fill-opacity="1.0" font-size="4.0e-2" stroke="none" stroke-width="0.0" fill="#1f78b4" text-anchor="middle"><text x="-0.6167585300332128" y="8.942632170978632e-2">1</text><text x="-0.5221120319467987" y="3.3183352080989936e-2">2</text><text x="-0.42746553386038433" y="-2.30596175478065e-2">3</text><text x="-0.3328190357739701" y="-7.930258717660288e-2">4</text><text x="-0.23817253768755586" y="-0.13554555680539926">5</text><text x="-0.14352603960114174" y="-0.19178852643419564">6</text><text x="-4.887954151472729e-2" y="-0.24803149606299213">7</text><text x="4.5766956571686945e-2" y="-0.3042744656917884">8</text><text x="0.14041345465810107" y="-0.3605174353205849">9</text><text x="0.23505995274451563" y="-0.41676040494938116">10</text></g><g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="8.0e-3" fill="#ffffff"><rect height="0.2476490438695163" width="0.303121184538089" x="0.4191158426898962" y="-0.16986386043458757"/></g><g fill-opacity="1.0" font-size="4.8e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="0.44435490884627304" y="1.911251751816828e-2">column 2</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b4" stroke-width="8.0e-4" fill="#1f78b4"><rect height="4.3194600674915595e-2" width="3.0286879387652732e-2" x="0.6664586910223917" y="-1.7648728080408294e-3"/></g><g fill-opacity="1.0" font-size="4.8e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="0.44435490884627304" y="-9.391335424786107e-2">column 1</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#a6cee3" stroke-width="8.0e-4" fill="#a6cee3"><rect height="4.319460067491565e-2" width="3.0286879387652732e-2" x="0.6664586910223917" y="-0.11479074457407024"/></g><g></g></svg>
diff --git a/other/boundText.svg b/other/boundText.svg
deleted file mode 100644
--- a/other/boundText.svg
+++ /dev/null
@@ -1,1 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.775 -0.5469860228716645 1.9185575868372946 1.0669860228716646" width="450.0" xmlns:xlink="http://www.w3.org/1999/xlink"><g fill-opacity="1.0" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="-0.75" y="0.1823379923761118">a pretty long piece of text</text></g><g fill-opacity="1.0" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="-6.444241316270571e-2" y="-0.45298602287166456">another pretty long piece of text</text></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="1.0e-2" fill="#1f78b4"><rect height="7.369758576874202e-2" width="0.6663619744058501" x="-0.75" y="0.13532401524777637"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="1.0e-2" fill="#1f78b4"><rect height="7.369758576874208e-2" width="0.8144424131627057" x="-6.444241316270571e-2" y="-0.5"/></g></svg>
diff --git a/other/boundTextBug.svg b/other/boundTextBug.svg
new file mode 100644
--- /dev/null
+++ b/other/boundTextBug.svg
@@ -0,0 +1,1 @@
+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.775 -0.5469860228716645 1.9185575868372942 1.0669860228716646" width="539.4328170317715" xmlns:xlink="http://www.w3.org/1999/xlink"><g fill-opacity="1.0" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="-0.75" y="0.18233799237611187">a pretty long piece of text</text></g><g fill-opacity="1.0" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="-6.444241316270582e-2" y="-0.45298602287166456">another pretty long piece of text</text></g><g></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="1.0e-2" fill="#1f78b4"><rect height="7.369758576874202e-2" width="0.66636197440585" x="-0.75" y="0.13532401524777637"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="1.0e-2" fill="#1f78b4"><rect height="7.369758576874208e-2" width="0.8144424131627058" x="-6.444241316270582e-2" y="-0.5"/></g></svg>
diff --git a/other/compound.svg b/other/compound.svg
new file mode 100644
--- /dev/null
+++ b/other/compound.svg
@@ -0,0 +1,5 @@
+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.8300000000000001 -0.634 1.6600000000000001 1.1965" width="416.2139573756791" xmlns:xlink="http://www.w3.org/1999/xlink"><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.75" y="0.5">0,0</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.75" y="0.30000000000000004">0,1</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.75" y="9.999999999999998e-2">0,2</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.75" y="-0.1000000000000002">0,3</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.75" y="-0.30000000000000004">0,4</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.75" y="-0.5">0,5</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.44999999999999996" y="0.5">1,0</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.44999999999999996" y="0.30000000000000004">1,1</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.44999999999999996" y="9.999999999999998e-2">1,2</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.44999999999999996" y="-0.1000000000000002">1,3</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.44999999999999996" y="-0.30000000000000004">1,4</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.44999999999999996" y="-0.5">1,5</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.1499999999999999" y="0.5">2,0</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.1499999999999999" y="0.30000000000000004">2,1</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.1499999999999999" y="9.999999999999998e-2">2,2</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.1499999999999999" y="-0.1000000000000002">2,3</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.1499999999999999" y="-0.30000000000000004">2,4</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.1499999999999999" y="-0.5">2,5</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.15000000000000013" y="0.5">3,0</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.15000000000000013" y="0.30000000000000004">3,1</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.15000000000000013" y="9.999999999999998e-2">3,2</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.15000000000000013" y="-0.1000000000000002">3,3</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.15000000000000013" y="-0.30000000000000004">3,4</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.15000000000000013" y="-0.5">3,5</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.4500000000000002" y="0.5">4,0</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.4500000000000002" y="0.30000000000000004">4,1</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.4500000000000002" y="9.999999999999998e-2">4,2</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.4500000000000002" y="-0.1000000000000002">4,3</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.4500000000000002" y="-0.30000000000000004">4,4</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.4500000000000002" y="-0.5">4,5</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.75" y="0.5">5,0</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.75" y="0.30000000000000004">5,1</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.75" y="9.999999999999998e-2">5,2</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.75" y="-0.1000000000000002">5,3</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.75" y="-0.30000000000000004">5,4</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.75" y="-0.5">5,5</text></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="0.495"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="0.29500000000000004"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="9.499999999999997e-2"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="-0.1050000000000002"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="-0.30500000000000005"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="-0.505"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="0.495"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="0.29500000000000004"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="9.499999999999997e-2"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="-0.1050000000000002"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="-0.30500000000000005"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="-0.505"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="0.495"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="0.29500000000000004"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="9.499999999999997e-2"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="-0.1050000000000002"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="-0.30500000000000005"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="-0.505"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="0.495"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="0.29500000000000004"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="9.499999999999997e-2"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="-0.1050000000000002"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="-0.30500000000000005"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="-0.505"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="0.495"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="0.29500000000000004"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="9.499999999999997e-2"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="-0.1050000000000002"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="-0.30500000000000005"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="-0.505"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="0.495"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="0.29500000000000004"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="9.499999999999997e-2"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="-0.1050000000000002"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="-0.30500000000000005"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="-0.505"/></g><g stroke-opacity="1.0" stroke="#a6cee3" stroke-width="1.5e-2" fill="none"><polyline points="-0.75,0.30000000000000004
+-0.44999999999999996,0.30000000000000004
+-0.1499999999999999,-0.5"/></g><g stroke-opacity="1.0" stroke="#1f78b4" stroke-width="3.0e-2" fill="none"><polyline points="-0.75,0.5
+8.999999999999975e-2,-0.1000000000000002"/></g><g stroke-opacity="1.0" stroke="#fb9a99" stroke-width="1.0e-2" fill="none"><polyline points="-0.6,-0.30000000000000004
+-0.6,0.5"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#a6cee3" stroke-width="5.0e-3" fill="#a6cee3"><ellipse rx="4.0e-2" ry="6.0e-2" cy="0.30000000000000004" cx="-0.75"/><ellipse rx="4.0e-2" ry="6.0e-2" cy="0.30000000000000004" cx="-0.44999999999999996"/><ellipse rx="4.0e-2" ry="6.0e-2" cy="-0.5" cx="-0.1499999999999999"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b4" stroke-width="5.0e-3" fill="#1f78b4"><rect height="8.000000000000002e-2" width="8.000000000000007e-2" x="-0.79" y="0.46"/><rect height="8.000000000000002e-2" width="8.000000000000002e-2" x="4.9999999999999746e-2" y="-0.1400000000000002"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#e31a1c" stroke-width="5.0e-3" fill="#e31a1c"><circle cy="-0.30000000000000004" r="4.0e-2" cx="-0.6"/><circle cy="0.5" r="4.0e-2" cx="-0.6"/></g></svg>
diff --git a/other/cubic.svg b/other/cubic.svg
new file mode 100644
--- /dev/null
+++ b/other/cubic.svg
@@ -0,0 +1,145 @@
+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.5564302334627085 -0.553332290265392 1.054360466925417 1.2787015914587672" width="247.36665864064085" xmlns:xlink="http://www.w3.org/1999/xlink"><g transform="translate(-6.753750000000003e-2, 0.7284310344827585)" fill-opacity="1.0" font-size="6.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text transform="rotate(-0.0, 3.282076968850922e-2, -5.4561733289383296e-2)" x="3.282076968850922e-2" y="-5.4561733289383296e-2">M 0,0 C 1.0,0 0,-1.0 1.0,-1.0</text></g><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="0.8908765334212332" width="0.8572189275483985" x="-0.39578869408568995" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.39578869408568995,0.39087653342123324
+0.4614302334627085,0.39087653342123324"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.39578869408568995,0.30178888007911
+0.4614302334627085,0.30178888007911"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.39578869408568995,0.2127012267369866
+0.4614302334627085,0.2127012267369866"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.39578869408568995,0.12361357339486329
+0.4614302334627085,0.12361357339486329"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.39578869408568995,3.452592005273997e-2
+0.4614302334627085,3.452592005273997e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.39578869408568995,-5.4561733289383296e-2
+0.4614302334627085,-5.4561733289383296e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.39578869408568995,-0.14364938663150661
+0.4614302334627085,-0.14364938663150661"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.39578869408568995,-0.23273703997363004
+0.4614302334627085,-0.23273703997363004"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.39578869408568995,-0.32182469331575336
+0.4614302334627085,-0.32182469331575336"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.39578869408568995,-0.4109123466578767
+0.4614302334627085,-0.4109123466578767"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.39578869408568995,-0.5
+0.4614302334627085,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4614302334627085" y="0.4037942431558411">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4614302334627085" y="0.3147065898137178">0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4614302334627085" y="0.22561893647159448">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4614302334627085" y="0.13653128312947116">0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4614302334627085" y="4.744362978734784e-2">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4614302334627085" y="-4.164402355477548e-2">0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4614302334627085" y="-0.1307316768968989">0.6</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4614302334627085" y="-0.21981933023902223">0.7</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4614302334627085" y="-0.30890698358114543">0.8</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4614302334627085" y="-0.39799463692326875">0.9</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4614302334627085" y="-0.48708229026539196">1</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><g transform="rotate(-90.0, -0.4335063268978194, 0.39087653342123324)"><polyline points="-0.4335063268978194,0.40587653342123325
+-0.4335063268978194,0.3758765334212332"/></g><g transform="rotate(-90.0, -0.4335063268978194, 0.30178888007911)"><polyline points="-0.4335063268978194,0.31678888007911
+-0.4335063268978194,0.28678888007910996"/></g><g transform="rotate(-90.0, -0.4335063268978194, 0.2127012267369866)"><polyline points="-0.4335063268978194,0.22770122673698662
+-0.4335063268978194,0.1977012267369866"/></g><g transform="rotate(-90.0, -0.4335063268978194, 0.12361357339486329)"><polyline points="-0.4335063268978194,0.1386135733948633
+-0.4335063268978194,0.10861357339486329"/></g><g transform="rotate(-90.0, -0.4335063268978194, 3.452592005273997e-2)"><polyline points="-0.4335063268978194,4.9525920052739966e-2
+-0.4335063268978194,1.9525920052739967e-2"/></g><g transform="rotate(-90.0, -0.4335063268978194, -5.4561733289383296e-2)"><polyline points="-0.4335063268978194,-3.95617332893833e-2
+-0.4335063268978194,-6.95617332893833e-2"/></g><g transform="rotate(-90.0, -0.4335063268978194, -0.14364938663150661)"><polyline points="-0.4335063268978194,-0.1286493866315066
+-0.4335063268978194,-0.15864938663150663"/></g><g transform="rotate(-90.0, -0.4335063268978194, -0.23273703997363004)"><polyline points="-0.4335063268978194,-0.21773703997363003
+-0.4335063268978194,-0.24773703997363006"/></g><g transform="rotate(-90.0, -0.4335063268978194, -0.32182469331575336)"><polyline points="-0.4335063268978194,-0.30682469331575335
+-0.4335063268978194,-0.3368246933157534"/></g><g transform="rotate(-90.0, -0.4335063268978194, -0.4109123466578767)"><polyline points="-0.4335063268978194,-0.39591234665787667
+-0.4335063268978194,-0.4259123466578767"/></g><g transform="rotate(-90.0, -0.4335063268978194, -0.5)"><polyline points="-0.4335063268978194,-0.485
+-0.4335063268978194,-0.515"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="0.8908765334212332" width="4.286094637741988e-3" x="-0.42279109030346446" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.39578869408568995,0.39087653342123324
+-0.39578869408568995,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.31006680133085013,0.39087653342123324
+-0.31006680133085013,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.22434490857601025,0.39087653342123324
+-0.22434490857601025,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.13862301582117037,0.39087653342123324
+-0.13862301582117037,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-5.2901123066330547e-2,0.39087653342123324
+-5.2901123066330547e-2,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="3.282076968850922e-2,0.39087653342123324
+3.282076968850922e-2,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.1185426624433491,0.39087653342123324
+0.1185426624433491,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.20426455519818898,0.39087653342123324
+0.20426455519818898,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.28998644795302875,0.39087653342123324
+0.28998644795302875,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.3757083407078686,0.39087653342123324
+0.3757083407078686,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.4614302334627085,0.39087653342123324
+0.4614302334627085,-0.5"/></g><g fill-opacity="1.0" font-size="4.2744827586206895e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.39578869408568995" y="0.5">0</text></g><g fill-opacity="1.0" font-size="4.2744827586206895e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.31006680133085013" y="0.5">0.1</text></g><g fill-opacity="1.0" font-size="4.2744827586206895e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.22434490857601025" y="0.5">0.2</text></g><g fill-opacity="1.0" font-size="4.2744827586206895e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.13862301582117037" y="0.5">0.3</text></g><g fill-opacity="1.0" font-size="4.2744827586206895e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-5.2901123066330547e-2" y="0.5">0.4</text></g><g fill-opacity="1.0" font-size="4.2744827586206895e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="3.282076968850922e-2" y="0.5">0.5</text></g><g fill-opacity="1.0" font-size="4.2744827586206895e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.1185426624433491" y="0.5">0.6</text></g><g fill-opacity="1.0" font-size="4.2744827586206895e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.20426455519818898" y="0.5">0.7</text></g><g fill-opacity="1.0" font-size="4.2744827586206895e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.28998644795302875" y="0.5">0.8</text></g><g fill-opacity="1.0" font-size="4.2744827586206895e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.3757083407078686" y="0.5">0.9</text></g><g fill-opacity="1.0" font-size="4.2744827586206895e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.4614302334627085" y="0.5">1</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="-0.39578869408568995,0.44507510089176744
+-0.39578869408568995,0.4150751008917674"/><polyline points="-0.31006680133085013,0.44507510089176744
+-0.31006680133085013,0.4150751008917674"/><polyline points="-0.22434490857601025,0.44507510089176744
+-0.22434490857601025,0.4150751008917674"/><polyline points="-0.13862301582117037,0.44507510089176744
+-0.13862301582117037,0.4150751008917674"/><polyline points="-5.2901123066330547e-2,0.44507510089176744
+-5.2901123066330547e-2,0.4150751008917674"/><polyline points="3.282076968850922e-2,0.44507510089176744
+3.282076968850922e-2,0.4150751008917674"/><polyline points="0.1185426624433491,0.44507510089176744
+0.1185426624433491,0.4150751008917674"/><polyline points="0.20426455519818898,0.44507510089176744
+0.20426455519818898,0.4150751008917674"/><polyline points="0.28998644795302875,0.44507510089176744
+0.28998644795302875,0.4150751008917674"/><polyline points="0.3757083407078686,0.44507510089176744
+0.3757083407078686,0.4150751008917674"/><polyline points="0.4614302334627085,0.44507510089176744
+0.4614302334627085,0.4150751008917674"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.454382667106127e-3" width="0.8572189275483985" x="-0.39578869408568995" y="0.4144847615568959"/></g><g stroke-opacity="0.0" fill-opacity="0.1" stroke="#000000" stroke-width="1.0e-2" fill="#e31a1c"><path d="M -0.3958,0.3909 C 0.4614,0.3909 -0.3958,-0.5 0.4614,-0.5"/></g><g stroke-opacity="1.0" stroke="#1f78b4" stroke-width="2.0e-3" fill="none"><polyline points="-0.39578869408568995,0.39087653342123324
+-0.3705830287400569,0.3906110522142737
+-0.34638545285322064,0.38982173560566247
+-0.32317539317092014,0.3885192741138007
+-0.30093227643889436,0.3867143582570892
+-0.27963552940288205,0.3844176785539294
+-0.25926457880862186,0.3816399255227219
+-0.23979885140185278,0.3783917896818681
+-0.22121777392831368,0.3746839615497689
+-0.20350077313374337,0.3705271316448254
+-0.18662727576388072,0.3659319904854387
+-0.17057670856446455,0.36090922859000985
+-0.15532849828123368,0.3554695364769398
+-0.1408620716599268,0.3496236046646296
+-0.12715685544628302,0.34338212367148047
+-0.11419227638604112,0.33675578401589334
+-0.10194776122493987,0.3297552762162693
+-9.040273670871796e-2,0.32239129079100937
+-7.953662958311442e-2,0.3146745182585146
+-6.9328866593868e-2,0.30661564913718614
+-5.975887448671763e-2,0.298225373945425
+-5.080608000740222e-2,0.28951438320163225
+-4.244990990166053e-2,0.2804933674242088
+-3.466979091523131e-2,0.27117301713155584
+-2.744514979385343e-2,0.2615640228420744
+-2.075541328326569e-2,0.2516770750741656
+-1.4580008129207067e-2,0.24152286434623033
+-8.898361077416261e-3,0.23111208117666981
+-3.689898873632136e-3,0.22045541608388503
+1.0659517364063342e-3,0.20956355958627704
+5.38976400696034e-3,0.19844720220224693
+9.30211119229124e-3,0.18711703445019567
+1.2823566546660059e-2,0.17558374684852435
+1.5974703324327988e-2,0.16385802991563408
+1.877609477955622e-2,0.15195057416992586
+2.124831416660583e-2,0.1398720701298008
+2.341193473973796e-2,0.12763320831365993
+2.5287529753214022e-2,0.11524467923990422
+2.6895672461294762e-2,0.10271717342693487
+2.8256936118241538e-2,9.006138139315278e-2
+2.939189397831571e-2,7.728799365695921e-2
+3.0321119295778076e-2,6.440770073675495e-2
+3.1065185324890165e-2,5.143119315094141e-2
+3.1644665319912835e-2,3.836916141791924e-2
+3.2080132535107386e-2,2.523229605608962e-2
+3.239216022473518e-2,1.2031287583853856e-2
+3.2601321643056846e-2,-1.2231734803873628e-3
+3.272819004433414e-2,-1.4520396618232678e-2
+3.2793338682827744e-2,-2.7849691311281122e-2
+3.281734081279897e-2,-4.1200367041131725e-2
+3.282076968850922e-2,-5.4561733289383296e-2
+3.282419856421942e-2,-6.792309953763498e-2
+3.284820069419081e-2,-8.127377526748558e-2
+3.2913349332684416e-2,-9.460306996053414e-2
+3.3040217733961486e-2,-0.10790029309837945
+3.324937915228349e-2,-0.12115475416262056
+3.3561406841910946e-2,-0.13435576263485638
+3.399687405710555e-2,-0.14749262799668583
+3.457635405212839e-2,-0.16055465972970806
+3.532042008124037e-2,-0.17353116731552165
+3.624964539870296e-2,-0.18641146023572586
+3.738460325877685e-2,-0.19918484797191938
+3.874586691572379e-2,-0.21184064000570157
+4.035400962380464e-2,-0.22436814581867093
+4.222960463728054e-2,-0.23675667489242658
+4.439322521041267e-2,-0.24899553670856756
+4.6865444597462114e-2,-0.26107404074869256
+4.966683605269051e-2,-0.27298149649440073
+5.281797283035827e-2,-0.2847072134272911
+5.633942818472715e-2,-0.2962405010289624
+6.025177537005799e-2,-0.3075706687810137
+6.457558764061211e-2,-0.31868702616504374
+6.933143825065058e-2,-0.3295788826626517
+7.45399004544346e-2,-0.3402355477554364
+8.022154750622545e-2,-0.35064633092499686
+8.639695266028413e-2,-0.3608005416529322
+9.308668917087193e-2,-0.37068748942084107
+0.1003113302922497,-0.38029648371032254
+0.10809144927867897,-0.3896168340029754
+0.11644761938442083,-0.39863784978039896
+0.12540041386373624,-0.40734884052419174
+0.13497040597088672,-0.415739115715953
+0.14517816896013302,-0.42379798483728115
+0.15604427608573646,-0.43151475736977596
+0.1675893006019581,-0.4388787427950359
+0.17983381576305946,-0.44587925059466005
+0.1927983948233014,-0.45250559025024706
+0.20650361103694537,-0.4587470712433963
+0.22097003765825207,-0.4645930030557063
+0.23621824794148294,-0.47003269516877655
+0.2522688151408994,-0.4750554570642055
+0.2691423125107618,-0.4796505982235919
+0.2868593133053323,-0.4838074281285355
+0.3054403907788714,-0.48751525626063485
+0.3249061181856404,-0.49076339210148845
+0.3452770687799004,-0.49354114513269587
+0.36657381581591286,-0.49583782483585603
+0.3888169325479387,-0.4976427406925674
+0.41202699223023886,-0.49894520218442906
+0.43622456811707533,-0.4997345187930404
+0.4614302334627085,-0.5"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="3.0e-3" fill="#a6cee3"><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.41078869408568996" y="0.3758765334212332"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.4464302334627085" y="-0.515"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.4464302334627085" y="0.3758765334212332"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.41078869408568996" y="-0.515"/><rect height="3.0000000000000027e-2" width="3.0000000000000013e-2" x="0.11040041386373624" y="-0.42234884052419175"/></g><g stroke-opacity="1.0" fill-opacity="0.1" stroke="#808080" stroke-width="2.0e-3" fill="#6666cc"><rect height="0.8908765334212332" width="0.8572189275483985" x="-0.39578869408568995" y="-0.5"/></g></svg>
diff --git a/other/ellipse.svg b/other/ellipse.svg
new file mode 100644
--- /dev/null
+++ b/other/ellipse.svg
@@ -0,0 +1,233 @@
+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-1.7100749999999998 -1.53175 3.2475749999999994 3.66925" width="265.52360836683243" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="3.4999999999999996" width="2.9999999999999996" x="-1.5" y="-1.4999999999999996"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-1.5,2.0
+1.4999999999999996,2.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-1.5,1.5
+1.4999999999999996,1.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-1.5,1.0000000000000002
+1.4999999999999996,1.0000000000000002"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-1.5,0.5000000000000002
+1.4999999999999996,0.5000000000000002"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-1.5,-0.0
+1.4999999999999996,-0.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-1.5,-0.4999999999999991
+1.4999999999999996,-0.4999999999999991"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-1.5,-1.0
+1.4999999999999996,-1.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-1.5,-1.4999999999999996
+1.4999999999999996,-1.4999999999999996"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.6100749999999997" y="2.0145">-2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.6100749999999997" y="1.5145">-1.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.6100749999999997" y="1.0145000000000002">-1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.6100749999999997" y="0.5145000000000002">-0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.6100749999999997" y="1.4499999999999957e-2">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.6100749999999997" y="-0.48549999999999915">0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.6100749999999997" y="-0.9854999999999996">1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.6100749999999997" y="-1.4855">1.5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><g transform="rotate(-90.0, -1.5775, 2.0)"><polyline points="-1.5775,2.015
+-1.5775,1.985"/></g><g transform="rotate(-90.0, -1.5775, 1.5)"><polyline points="-1.5775,1.515
+-1.5775,1.485"/></g><g transform="rotate(-90.0, -1.5775, 1.0000000000000002)"><polyline points="-1.5775,1.0150000000000001
+-1.5775,0.9850000000000002"/></g><g transform="rotate(-90.0, -1.5775, 0.5000000000000002)"><polyline points="-1.5775,0.5150000000000002
+-1.5775,0.4850000000000002"/></g><g transform="rotate(-90.0, -1.5775, -0.0)"><polyline points="-1.5775,1.5e-2
+-1.5775,-1.5e-2"/></g><g transform="rotate(-90.0, -1.5775, -0.4999999999999991)"><polyline points="-1.5775,-0.4849999999999991
+-1.5775,-0.5149999999999991"/></g><g transform="rotate(-90.0, -1.5775, -1.0)"><polyline points="-1.5775,-0.985
+-1.5775,-1.015"/></g><g transform="rotate(-90.0, -1.5775, -1.4999999999999996)"><polyline points="-1.5775,-1.4849999999999997
+-1.5775,-1.5149999999999995"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="3.4999999999999996" width="4.999999999999893e-3" x="-1.565" y="-1.4999999999999996"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-1.5,2.0
+-1.5,-1.4999999999999996"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-1.0,2.0
+-1.0,-1.4999999999999996"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.5,2.0
+-0.5,-1.4999999999999996"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.0,2.0
+0.0,-1.4999999999999996"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.49999999999999956,2.0
+0.49999999999999956,-1.4999999999999996"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="1.0,2.0
+1.0,-1.4999999999999996"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="1.4999999999999996,2.0
+1.4999999999999996,-1.4999999999999996"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-1.5" y="2.11125">-1.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-1.0" y="2.11125">-1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.5" y="2.11125">-0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.0" y="2.11125">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.49999999999999956" y="2.11125">0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="1.0" y="2.11125">1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="1.4999999999999996" y="2.11125">1.5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="-1.5,2.0425
+-1.5,2.0124999999999997"/><polyline points="-1.0,2.0425
+-1.0,2.0124999999999997"/><polyline points="-0.5,2.0425
+-0.5,2.0124999999999997"/><polyline points="0.0,2.0425
+0.0,2.0124999999999997"/><polyline points="0.49999999999999956,2.0425
+0.49999999999999956,2.0124999999999997"/><polyline points="1.0,2.0425
+1.0,2.0124999999999997"/><polyline points="1.4999999999999996,2.0425
+1.4999999999999996,2.0124999999999997"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.999999999999893e-3" width="2.9999999999999996" x="-1.5" y="2.01"/></g><g stroke-opacity="1.0" stroke="#1f78b4" stroke-width="2.0e-3" fill="none"><polyline points="1.0,-0.0
+0.9940146461148012,6.427210796446436e-2
+0.9854684971040975,0.129205801530343
+0.9743808284486217,0.194654625474612
+0.9607766479200981,0.2604709627192794
+0.9446866391772528,0.32650636727551374
+0.9261470925601181,0.3926118990573497
+0.9051998232386831,0.45863845980980367
+0.8818920769005367,0.5244371293937398
+0.8562764231902009,0.5898595016689938
+0.8284106371404976,0.6547580192182043
+0.7983575688633868,0.7189863061563773
+0.7661850017941774,0.7823994982755582
+0.7319654998088261,0.844854569779977
+0.6957762435591621,0.9062106558747358
+0.6576988563951605,0.9663293704804432
+0.6178192202669006,1.0250751183572175
+0.5762272820214287,1.0823154009340614
+0.533016850531415,1.1379211151538344
+0.4882853851131763,1.191766844659785
+0.4421337757112749,1.2437311426668831
+0.39466611534547624,1.2936968058799505
+0.3459894653333131,1.3415511388407824
+0.29621361381776756,1.3871862081080222
+0.24545082814471986,1.430499085696519
+0.19381560164866274,1.4713920812270747
+0.1414243954177763,1.5097729622630052
+8.839537562083555e-2,1.545555162336529
+3.4848146988369466e-2,1.5786579761958062
+-1.9096516950796394e-2,1.6090067418322525
+-7.331694626916585e-2,1.6365330088775658
+-0.12769084906199346,1.6611746929906617
+-0.18209558727154862,1.6828762158863042
+-0.23640845329211113,1.7015886306895949
+-0.29050694673182864,1.7172697323335977
+-0.3442690507072199,1.7298841527510982
+-0.39757350704712957,1.7394034406457948
+-0.4503000897854583,1.7458061256630062
+-0.5023298763257826,1.7490777668151547
+-0.553545515666283,1.7492109850528088
+-0.6038314930800137,1.7462054799078195
+-0.6530743906535196,1.740068030171014
+-0.7011631430961872,1.730812478602917
+-0.7479892882433502,1.7184597007119842
+-0.7934472116881531,1.7030375576707697
+-0.8374343849904168,1.6845808334762182
+-0.8798515969252381,1.6631311564958184
+-0.9206031772497456,1.6387369055765686
+-0.959597212483321,1.6114531009285114
+-0.9967457532146013,1.5813412800289601
+-1.0319650124676871,1.5484693588272997
+-1.0651755546801553,1.5129114785634061
+-1.0963024748666366,1.4747478385451958
+-1.1252755675638715,1.4340645152624427
+-1.1520294851761868,1.39095326824487
+-1.176503885364259,1.3455113331023756
+-1.19864356714473,1.2978412022141925
+-1.2183985953937093,1.2480503935616256
+-1.2357244134733536,1.1962512082257506
+-1.250581943727494,1.1425604770970392
+-1.2629376756196518,1.0870992973681812
+-1.2727637413146469,1.0299927594044442
+-1.2800379785333331,0.9713696646076042
+-1.2847439805386887,0.9113622349097763
+-1.2868711331405234,0.850105814552401
+-1.2864146386353401,0.7877385648229778
+-1.2833755266273537,0.7244011524380729
+-1.2777606517062607,0.6602364322754448
+-1.2695826779870025,0.5953891251708496
+-1.2588600505463818,0.5300054915062733
+-1.2456169538209676,0.46423300132576384
+-1.2298832570601115,0.3982200017229367
+-1.2116944469571096,0.3321153822503291
+-1.1910915476104509,0.26606823910524224
+-1.1681210279956875,0.20022753884954136
+-1.142834697156606,0.13474178242180646
+-1.1152895873521018,6.975867019969684e-2
+-1.0855478254223114,5.424768867944518e-3
+-1.0536764926641298,-5.81148191566605e-2
+-1.0197474735321572,-0.12071678299768429
+-0.983837293506328,-0.1822399265507202
+-0.9460269464918966,-0.242545486945287
+-0.9064017121410812,-0.3014974475186625
+-0.8650509635083894,-0.35896284459575467
+-0.8220679654734302,-0.4148120673831128
+-0.7775496643859013,-0.4689191503006187
+-0.7315964694071552,-0.5211620570915811
+-0.6843120260415457,-0.5714229560703963
+-0.6358029823683446,-0.6195884858869642
+-0.5861787485014645,-0.6655500112084733
+-0.5355512498195376,-0.7092038677418295
+-0.4840346745229174,-0.7504515960441251
+-0.4317452160869839,-0.7892001635937809
+-0.37880081119262377,-0.8253621746215032
+-0.3253208737250024,-0.8588560672277712
+-0.2714260254405456,-0.8896062973422842
+-0.21723782390962731,-0.917543509110446
+-0.16287848834857122,-0.9426046913225812
+-0.10847062395932605,-0.9647333195330812
+-5.4136945398582714e-2,-0.9838794835489195
+0.0,-1.0"/></g><g stroke-opacity="1.0" stroke="#1f78b4" stroke-width="2.0e-3" fill="none"><polyline points="0.6086376856300113,-0.9414395063606071
+0.5527795469220065,-0.97027141116074
+0.4941819474107332,-0.9938628196756247
+0.43307614505076675,-1.01212062739374
+0.36970329652743494,-1.024972779089223
+0.30431350552155867,-1.032368553190921
+0.23716483566448576,-1.0342787619572622
+0.16852229207883163,-1.030695866666938
+9.865677552433416e-2,-1.021634007370789
+2.7844013276314916e-2,-1.0071289470874882
+-4.363652904390536e-2,-0.9872379306632406
+-0.11550275039214375,-0.9620394588525345
+-0.187471027625292,-0.9316329785115176
+-0.2592573348322882,-0.8961384901266976
+-0.3305783642546314,-0.8556960742278399
+-0.4011526443726703,-0.8104653385541143
+-0.4707016507451012,-0.7606247881552681
+-0.5389509052176904,-0.7063711209137438
+-0.6056310591631524,-0.647918451268001
+-0.6704789564771296,-0.5854974652006462
+-0.7332386721351098,-0.5193545098262522
+-0.7936625222115783,-0.44975062117184006
+-0.8515120413753137,-0.37696049398693576
+-0.9065589240031089,-0.30127139764889277
+-0.95858592519776,-0.222982042441898
+-1.0073877181544273,-0.14240140068394957
+-1.05277170449173,-5.984748735427292e-2
+-1.0945587743495653,2.4353894966514744e-2
+-1.132584013253901,0.10987044189034778
+-1.1666973529588605,0.1963646586753094
+-1.1967641636975312,0.2834951921631996
+-1.2226657855041465,0.37091817794449544
+-1.2442999965107613,0.4582885974340818
+-1.261581416370263,0.5452616395019809
+-1.2744418432135962,0.6314940612853537
+-1.2828305228113803,0.7166455428112668
+-1.286714348877666,0.8003800300841504
+-1.2860779937253213,0.8823670613373866
+-1.280923968757409,0.9622830712149295
+-1.2712726145558277,1.0398126677359452
+-1.2571620206063265,1.1146498770028688
+-1.2386478749767074,1.1864993507405912
+-1.2158032445414615,1.2550775319011742
+-1.188718286620198,1.3201137737339654
+-1.1574998931678915,1.3813514079046847
+-1.1222712689211713,1.438548757448074
+-1.083171445165512,1.4914800905564687
+-1.0403547310422663,1.539936511440116
+-0.9939901045609831,1.5837267847434204
+-0.9442605457204011,1.6226780902635274
+-0.8913623143699893,1.656636704992708
+-0.8355041756619843,1.6854686097928409
+-0.7769065761507113,1.7090600183077247
+-0.7158007737907442,1.7273178260258404
+-0.6524279252674126,1.7401699777213238
+-0.5870381342615363,1.7475657518230214
+-0.5198894644044634,1.749475960589363
+-0.4512469208188099,1.7458930652990383
+-0.38138140426431155,1.7368312060028894
+-0.3105686420162932,1.7223261457195886
+-0.2390880996960727,1.7024351292953415
+-0.16722187834783409,1.6772366574846354
+-9.52536011146865e-2,1.6468301771436185
+-2.3467293907689424e-2,1.611335688758798
+4.785373551465377e-2,1.5708932728599398
+0.11842801563269267,1.5256625371862147
+0.18797702200512356,1.475821986787368
+0.25622627647771234,1.4215683195458442
+0.3229064304231748,1.363115649900101
+0.38775432773715224,1.300694663832747
+0.45051404339513246,1.2345517084583535
+0.5109378934716009,1.16494781980394
+0.5687874126353365,1.0921576926190362
+0.6238342952631308,1.0164685962809938
+0.6758612964577817,0.9381792410739986
+0.7246630894144497,0.8575985993160506
+0.7700470757517524,0.7750446859863742
+0.8118341456095877,0.6908433036655857
+0.8498593845139233,0.605326756741754
+0.8839727242188826,0.518832539956791
+0.9140395349575532,0.4317020064689012
+0.9399411567641685,0.34427902068760585
+0.961575367770783,0.25690860119802017
+0.9788567876302854,0.16993555913011926
+0.9917172144736188,8.370313734674761e-2
+1.0001058940714032,-1.4483441791663942e-3
+1.0039897201376888,-8.518283145204997e-2
+1.0033533649853439,-0.16716986270528622
+0.9981993400174312,-0.24708587258282888
+0.9885479858158503,-0.3246154691038452
+0.9744373918663491,-0.39945267837076814
+0.95592324623673,-0.4713021521084908
+0.9330786158014837,-0.5398803332690738
+0.9059936578802206,-0.604916575101865
+0.8747752644279139,-0.6661542092725843
+0.8395466401811937,-0.7233515588159736
+0.8004468164255343,-0.7762828919243683
+0.7576301023022891,-0.8247393128080152
+0.7112654758210057,-0.8685295861113196
+0.6615359169804225,-0.907480891631427
+0.6086376856300113,-0.9414395063606071"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="3.0e-3" fill="#a6cee3"><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.1563623143699887" y="0.3425985993160502"/><rect height="3.0e-2" width="2.9999999999999916e-2" x="0.985" y="-1.5e-2"/><rect height="2.9999999999999916e-2" width="3.0e-2" x="-1.5e-2" y="-1.015"/></g><g stroke-opacity="1.0" fill-opacity="0.1" stroke="#808080" stroke-width="2.0e-3" fill="#6666cc"><rect height="2.7495396900235556" width="2.287006238108949" x="-1.2870062381089489" y="-1.0"/></g><g stroke-opacity="1.0" stroke="#e63305" stroke-width="5.0e-3" fill="none" stroke-linecap="round" stroke-dasharray="3.0e-2 1.0e-2"><polyline points="0.6086376856300113,-0.9414395063606071
+-0.8913623143699893,1.656636704992708"/></g><g stroke-opacity="1.0" stroke="#e6e605" stroke-width="5.0e-3" fill="none" stroke-linecap="round" stroke-dasharray="3.0e-2 1.0e-2"><polyline points="-1.0073877181544273,-0.14240140068394957
+0.7246630894144497,0.8575985993160506"/></g><g></g></svg>
diff --git a/other/glines.svg b/other/glines.svg
new file mode 100644
--- /dev/null
+++ b/other/glines.svg
@@ -0,0 +1,5 @@
+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.8125 -0.5825 1.6249999999999998 1.145" width="425.764192139738" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="1.0" stroke="#a6cee3" stroke-width="1.5e-2" fill="none"><polyline points="-0.75,0.30000000000000004
+-0.2142857142857144,0.30000000000000004
+0.3214285714285712,-0.5"/></g><g stroke-opacity="1.0" stroke="#1f78b4" stroke-width="3.0e-2" fill="none"><polyline points="-0.75,0.5
+0.7499999999999998,-0.10000000000000009"/></g><g stroke-opacity="1.0" stroke="#fb9a99" stroke-width="1.0e-2" fill="none"><polyline points="-0.4821428571428572,-0.30000000000000004
+-0.4821428571428572,0.5"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#a6cee3" stroke-width="5.0e-3" fill="#a6cee3"><ellipse rx="4.0e-2" ry="6.0e-2" cy="0.30000000000000004" cx="-0.75"/><ellipse rx="4.0e-2" ry="6.0e-2" cy="0.30000000000000004" cx="-0.2142857142857144"/><ellipse rx="4.0e-2" ry="6.0e-2" cy="-0.5" cx="0.3214285714285712"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b4" stroke-width="5.0e-3" fill="#1f78b4"><rect height="8.000000000000002e-2" width="8.000000000000007e-2" x="-0.79" y="0.46"/><rect height="8.000000000000002e-2" width="8.000000000000007e-2" x="0.7099999999999997" y="-0.1400000000000001"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#e31a1c" stroke-width="5.0e-3" fill="#e31a1c"><circle cy="-0.30000000000000004" r="4.0e-2" cx="-0.4821428571428572"/><circle cy="0.5" r="4.0e-2" cx="-0.4821428571428572"/></g></svg>
diff --git a/other/glyph.svg b/other/glyph.svg
deleted file mode 100644
--- a/other/glyph.svg
+++ /dev/null
@@ -1,3 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.8250000000000001 -0.125 1.6500000000000001 0.2" width="450.0" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="1.0e-2" fill="#a6cee3"><circle cy="-0.0" r="5.0e-2" cx="-0.75"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="1.0e-2" fill="#a6cee3"><rect height="0.1" width="0.10000000000000009" x="-0.6125" y="-5.0e-2"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="1.0e-2" fill="#a6cee3"><rect height="7.500000000000001e-2" width="9.999999999999998e-2" x="-0.425" y="-3.7500000000000006e-2"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="1.0e-2" fill="#a6cee3"><rect height="7.500000000000001e-2" rx="1.0e-2" ry="1.0e-2" width="9.999999999999998e-2" x="-0.2375" y="-3.7500000000000006e-2"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="0.0" fill="#a6cee3"><ellipse rx="5.0e-2" ry="3.7500000000000006e-2" cy="-0.0" cx="0.0"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="1.0e-2" fill="#a6cee3"><polyline points="0.1875,5.0e-2
-0.1875,-5.0e-2"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="1.0e-2" fill="#a6cee3"><polyline points="0.325,-0.0
-0.425,-0.0"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="1.0e-2" fill="#a6cee3"><polygon transform="translate(0.5625, -0.0)" points="0.0,-0.0 0.1,-0.1 0.1,-0.0"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="1.0e-2" fill="#a6cee3"><path transform="translate(0.75, -0.0)" d="M0.05,-0.03660254037844387 A0.1 0.1 0.0 0 1 0.0,0.05 0.1 0.1 0.0 0 1 -0.05,-0.03660254037844387 0.1 0.1 0.0 0 1 0.05,-0.03660254037844387 Z"/></g></svg>
diff --git a/other/glyphs.svg b/other/glyphs.svg
new file mode 100644
--- /dev/null
+++ b/other/glyphs.svg
@@ -0,0 +1,3 @@
+<svg xmlns="http://www.w3.org/2000/svg" height="50.0" viewBox="-0.8250000000000001 -0.15 1.605 0.2" width="401.25" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="1.0e-2" fill="#a6cee3"><circle cy="-2.5e-2" r="5.0e-2" cx="-0.75"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="1.0e-2" fill="#a6cee3"><rect height="0.1" width="0.10000000000000009" x="-0.6125" y="-7.500000000000001e-2"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="1.0e-2" fill="#a6cee3"><rect height="7.500000000000001e-2" width="9.999999999999998e-2" x="-0.42500000000000004" y="-6.25e-2"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="1.0e-2" fill="#a6cee3"><rect height="7.500000000000001e-2" rx="1.0e-2" ry="1.0e-2" width="9.999999999999998e-2" x="-0.2375" y="-6.25e-2"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="0.0" fill="#a6cee3"><ellipse rx="5.0e-2" ry="3.7500000000000006e-2" cy="-2.5e-2" cx="-1.1102230246251565e-16"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="1.0e-2" fill="#a6cee3"><polyline points="0.18749999999999978,2.5e-2
+0.18749999999999978,-7.500000000000001e-2"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="1.0e-2" fill="#a6cee3"><polyline points="0.325,-2.5e-2
+0.425,-2.5e-2"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="1.0e-2" fill="#a6cee3"><polygon transform="translate(0.5625, -2.5e-2)" points="0.0,-0.0 0.1,-0.1 0.1,-0.0"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="1.0e-2" fill="#a6cee3"><path transform="translate(0.7499999999999998, -2.5e-2) scale(0.1)" d="M0.05,-0.03660254037844387 A0.1 0.1 0.0 0 1 0.0,0.05 0.1 0.1 0.0 0 1 -0.05,-0.03660254037844387 0.1 0.1 0.0 0 1 0.05,-0.03660254037844387 Z"/></g></svg>
diff --git a/other/hud.svg b/other/hud.svg
deleted file mode 100644
--- a/other/hud.svg
+++ /dev/null
@@ -1,45 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.87 -0.5532016310461191 1.6774999999999998 1.099451631046119" width="450.0" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="0.8998875140607423" width="1.397450429327826" x="-0.6474504293278263" y="-0.4999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,0.39988751406074247
-0.7499999999999998,0.39988751406074247"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,0.30989876265466826
-0.7499999999999998,0.30989876265466826"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,0.219910011248594
-0.7499999999999998,0.219910011248594"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,0.12992125984251973
-0.7499999999999998,0.12992125984251973"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,3.9932508436445524e-2
-0.7499999999999998,3.9932508436445524e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-5.005624296962874e-2
-0.7499999999999998,-5.005624296962874e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-0.14004499437570306
-0.7499999999999998,-0.14004499437570306"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-0.23003374578177727
-0.7499999999999998,-0.23003374578177727"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-0.3200224971878515
-0.7499999999999998,-0.3200224971878515"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-0.4100112485939257
-0.7499999999999998,-0.4100112485939257"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-0.4999999999999999
-0.7499999999999998,-0.4999999999999999"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.4129358830146232">-0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.32294713160854904">-0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.23295838020247478">-0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.14296962879640052">-0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="5.298087739032631e-2">-0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-3.700787401574801e-2">0.0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.12699662542182233">0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.21698537682789654">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.30697412823397063">0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.39696287964004495">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.48695163104611905">0.5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><g transform="rotate(-90.0, -0.7196520348430974, 0.39988751406074247)"><polyline points="-0.7196520348430974,0.4148875140607425
--0.7196520348430974,0.38488751406074245"/></g><g transform="rotate(-90.0, -0.7196520348430974, 0.30989876265466826)"><polyline points="-0.7196520348430974,0.32489876265466827
--0.7196520348430974,0.29489876265466825"/></g><g transform="rotate(-90.0, -0.7196520348430974, 0.219910011248594)"><polyline points="-0.7196520348430974,0.234910011248594
--0.7196520348430974,0.20491001124859398"/></g><g transform="rotate(-90.0, -0.7196520348430974, 0.12992125984251973)"><polyline points="-0.7196520348430974,0.14492125984251975
--0.7196520348430974,0.11492125984251973"/></g><g transform="rotate(-90.0, -0.7196520348430974, 3.9932508436445524e-2)"><polyline points="-0.7196520348430974,5.4932508436445524e-2
--0.7196520348430974,2.4932508436445525e-2"/></g><g transform="rotate(-90.0, -0.7196520348430974, -5.005624296962874e-2)"><polyline points="-0.7196520348430974,-3.505624296962874e-2
--0.7196520348430974,-6.505624296962874e-2"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.14004499437570306)"><polyline points="-0.7196520348430974,-0.12504499437570304
--0.7196520348430974,-0.15504499437570307"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.23003374578177727)"><polyline points="-0.7196520348430974,-0.21503374578177725
--0.7196520348430974,-0.24503374578177728"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.3200224971878515)"><polyline points="-0.7196520348430974,-0.30502249718785146
--0.7196520348430974,-0.3350224971878515"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.4100112485939257)"><polyline points="-0.7196520348430974,-0.39501124859392567
--0.7196520348430974,-0.4250112485939257"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.4999999999999999)"><polyline points="-0.7196520348430974,-0.4849999999999999
--0.7196520348430974,-0.5149999999999999"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="0.8998875140607423" width="4.65816809775943e-3" x="-0.7080066145986988" y="-0.4999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,0.39988751406074247
--0.6474504293278263,-0.4999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.5077053863950438,0.39988751406074247
--0.5077053863950438,-0.4999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.36796034346226103,0.39988751406074247
--0.36796034346226103,-0.4999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.22821530052947847,0.39988751406074247
--0.22821530052947847,-0.4999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-8.84702575966958e-2,0.39988751406074247
--8.84702575966958e-2,-0.4999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="5.127478533608665e-2,0.39988751406074247
-5.127478533608665e-2,-0.4999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.19101982826886943,0.39988751406074247
-0.19101982826886943,-0.4999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.33076487120165177,0.39988751406074247
-0.33076487120165177,-0.4999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.4705099141344349,0.39988751406074247
-0.4705099141344349,-0.4999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.6102549570672173,0.39988751406074247
-0.6102549570672173,-0.4999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.7499999999999998,0.39988751406074247
-0.7499999999999998,-0.4999999999999999"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.6474504293278263" y="0.5">-0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.5077053863950438" y="0.5">-0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.36796034346226103" y="0.5">-0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.22821530052947847" y="0.5">-0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-8.84702575966958e-2" y="0.5">-0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="5.127478533608665e-2" y="0.5">0.0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.19101982826886943" y="0.5">0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.33076487120165177" y="0.5">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.4705099141344349" y="0.5">0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.6102549570672173" y="0.5">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.7499999999999998" y="0.5">0.5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="-0.6474504293278263,0.4396344206974129
--0.6474504293278263,0.40963442069741285"/><polyline points="-0.5077053863950438,0.4396344206974129
--0.5077053863950438,0.40963442069741285"/><polyline points="-0.36796034346226103,0.4396344206974129
--0.36796034346226103,0.40963442069741285"/><polyline points="-0.22821530052947847,0.4396344206974129
--0.22821530052947847,0.40963442069741285"/><polyline points="-8.84702575966958e-2,0.4396344206974129
--8.84702575966958e-2,0.40963442069741285"/><polyline points="5.127478533608665e-2,0.4396344206974129
-5.127478533608665e-2,0.40963442069741285"/><polyline points="0.19101982826886943,0.4396344206974129
-0.19101982826886943,0.40963442069741285"/><polyline points="0.33076487120165177,0.4396344206974129
-0.33076487120165177,0.40963442069741285"/><polyline points="0.4705099141344349,0.4396344206974129
-0.4705099141344349,0.40963442069741285"/><polyline points="0.6102549570672173,0.4396344206974129
-0.6102549570672173,0.40963442069741285"/><polyline points="0.7499999999999998,0.4396344206974129
-0.7499999999999998,0.40963442069741285"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.499437570303688e-3" width="1.397450429327826" x="-0.6474504293278263" y="0.4088863892013499"/></g></svg>
diff --git a/other/hudoptions.svg b/other/hudoptions.svg
new file mode 100644
--- /dev/null
+++ b/other/hudoptions.svg
@@ -0,0 +1,45 @@
+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.87 -0.5532016310461192 1.6775 1.099451631046119" width="457.72818538743877" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="0.8998875140607424" width="1.3974504293278263" x="-0.6474504293278263" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,0.3998875140607424
+0.75,0.3998875140607424"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,0.3098987626546682
+0.75,0.3098987626546682"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,0.21991001124859388
+0.75,0.21991001124859388"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,0.12992125984251962
+0.75,0.12992125984251962"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,3.993250843644536e-2
+0.75,3.993250843644536e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-5.005624296962885e-2
+0.75,-5.005624296962885e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-0.14004499437570317
+0.75,-0.14004499437570317"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-0.23003374578177738
+0.75,-0.23003374578177738"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-0.3200224971878517
+0.75,-0.3200224971878517"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-0.4100112485939259
+0.75,-0.4100112485939259"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-0.5
+0.75,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.4129358830146232">-0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.32294713160854893">-0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.23295838020247472">-0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.1429696287964004">-0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="5.298087739032625e-2">-0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-3.700787401574812e-2">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.12699662542182244">0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.21698537682789665">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.30697412823397086">0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.3969628796400453">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.48695163104611916">0.5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><g transform="rotate(-90.0, -0.7196520348430974, 0.3998875140607424)"><polyline points="-0.7196520348430974,0.4148875140607424
+-0.7196520348430974,0.3848875140607424"/></g><g transform="rotate(-90.0, -0.7196520348430974, 0.3098987626546682)"><polyline points="-0.7196520348430974,0.3248987626546682
+-0.7196520348430974,0.2948987626546682"/></g><g transform="rotate(-90.0, -0.7196520348430974, 0.21991001124859388)"><polyline points="-0.7196520348430974,0.2349100112485939
+-0.7196520348430974,0.20491001124859387"/></g><g transform="rotate(-90.0, -0.7196520348430974, 0.12992125984251962)"><polyline points="-0.7196520348430974,0.14492125984251963
+-0.7196520348430974,0.11492125984251962"/></g><g transform="rotate(-90.0, -0.7196520348430974, 3.993250843644536e-2)"><polyline points="-0.7196520348430974,5.493250843644536e-2
+-0.7196520348430974,2.4932508436445358e-2"/></g><g transform="rotate(-90.0, -0.7196520348430974, -5.005624296962885e-2)"><polyline points="-0.7196520348430974,-3.505624296962885e-2
+-0.7196520348430974,-6.505624296962885e-2"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.14004499437570317)"><polyline points="-0.7196520348430974,-0.12504499437570316
+-0.7196520348430974,-0.15504499437570318"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.23003374578177738)"><polyline points="-0.7196520348430974,-0.21503374578177736
+-0.7196520348430974,-0.2450337457817774"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.3200224971878517)"><polyline points="-0.7196520348430974,-0.3050224971878517
+-0.7196520348430974,-0.3350224971878517"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.4100112485939259)"><polyline points="-0.7196520348430974,-0.3950112485939259
+-0.7196520348430974,-0.4250112485939259"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.5)"><polyline points="-0.7196520348430974,-0.485
+-0.7196520348430974,-0.515"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="0.8998875140607424" width="4.65816809775943e-3" x="-0.7080066145986988" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,0.3998875140607424
+-0.6474504293278263,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.5077053863950438,0.3998875140607424
+-0.5077053863950438,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.367960343462261,0.3998875140607424
+-0.367960343462261,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.22821530052947825,0.3998875140607424
+-0.22821530052947825,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-8.847025759669558e-2,0.3998875140607424
+-8.847025759669558e-2,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="5.127478533608687e-2,0.3998875140607424
+5.127478533608687e-2,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.19101982826886954,0.3998875140607424
+0.19101982826886954,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.330764871201652,0.3998875140607424
+0.330764871201652,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.4705099141344351,0.3998875140607424
+0.4705099141344351,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.6102549570672173,0.3998875140607424
+0.6102549570672173,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.75,0.3998875140607424
+0.75,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.6474504293278263" y="0.5">-0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.5077053863950438" y="0.5">-0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.367960343462261" y="0.5">-0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.22821530052947825" y="0.5">-0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-8.847025759669558e-2" y="0.5">-0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="5.127478533608687e-2" y="0.5">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.19101982826886954" y="0.5">0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.330764871201652" y="0.5">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.4705099141344351" y="0.5">0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.6102549570672173" y="0.5">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.75" y="0.5">0.5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="-0.6474504293278263,0.4396344206974129
+-0.6474504293278263,0.40963442069741285"/><polyline points="-0.5077053863950438,0.4396344206974129
+-0.5077053863950438,0.40963442069741285"/><polyline points="-0.367960343462261,0.4396344206974129
+-0.367960343462261,0.40963442069741285"/><polyline points="-0.22821530052947825,0.4396344206974129
+-0.22821530052947825,0.40963442069741285"/><polyline points="-8.847025759669558e-2,0.4396344206974129
+-8.847025759669558e-2,0.40963442069741285"/><polyline points="5.127478533608687e-2,0.4396344206974129
+5.127478533608687e-2,0.40963442069741285"/><polyline points="0.19101982826886954,0.4396344206974129
+0.19101982826886954,0.40963442069741285"/><polyline points="0.330764871201652,0.4396344206974129
+0.330764871201652,0.40963442069741285"/><polyline points="0.4705099141344351,0.4396344206974129
+0.4705099141344351,0.40963442069741285"/><polyline points="0.6102549570672173,0.4396344206974129
+0.6102549570672173,0.40963442069741285"/><polyline points="0.75,0.4396344206974129
+0.75,0.40963442069741285"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.499437570303744e-3" width="1.3974504293278263" x="-0.6474504293278263" y="0.40888638920134984"/></g><g></g><g></g></svg>
diff --git a/other/label.svg b/other/label.svg
new file mode 100644
--- /dev/null
+++ b/other/label.svg
@@ -0,0 +1,1 @@
+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.6040702012600883 -0.6493250352560272 1.2533952365161158 1.2533952365161154" width="300.0000000000001" xmlns:xlink="http://www.w3.org/1999/xlink"><g fill-opacity="1.0" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text transform="rotate(45.0, 1.1313708498984831e-2, -1.131370849898472e-2)" x="1.1313708498984831e-2" y="-1.131370849898472e-2">text at (1,1) rotated by -(pi/4) radians</text></g></svg>
diff --git a/other/legend.svg b/other/legend.svg
--- a/other/legend.svg
+++ b/other/legend.svg
@@ -1,46 +1,46 @@
-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.87 -0.5532016310461191 1.6774999999999998 1.099451631046119" width="450.0" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="0.8998875140607423" width="1.397450429327826" x="-0.6474504293278263" y="-0.4999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,0.39988751406074247
-0.7499999999999998,0.39988751406074247"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,0.30989876265466826
-0.7499999999999998,0.30989876265466826"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,0.219910011248594
-0.7499999999999998,0.219910011248594"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,0.12992125984251973
-0.7499999999999998,0.12992125984251973"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,3.9932508436445524e-2
-0.7499999999999998,3.9932508436445524e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-5.005624296962874e-2
-0.7499999999999998,-5.005624296962874e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-0.14004499437570306
-0.7499999999999998,-0.14004499437570306"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-0.23003374578177727
-0.7499999999999998,-0.23003374578177727"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-0.3200224971878515
-0.7499999999999998,-0.3200224971878515"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-0.4100112485939257
-0.7499999999999998,-0.4100112485939257"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-0.4999999999999999
-0.7499999999999998,-0.4999999999999999"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.4129358830146232">-0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.32294713160854904">-0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.23295838020247478">-0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.14296962879640052">-0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="5.298087739032631e-2">-0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-3.700787401574801e-2">0.0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.12699662542182233">0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.21698537682789654">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.30697412823397063">0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.39696287964004495">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.48695163104611905">0.5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><g transform="rotate(-90.0, -0.7196520348430974, 0.39988751406074247)"><polyline points="-0.7196520348430974,0.4148875140607425
--0.7196520348430974,0.38488751406074245"/></g><g transform="rotate(-90.0, -0.7196520348430974, 0.30989876265466826)"><polyline points="-0.7196520348430974,0.32489876265466827
--0.7196520348430974,0.29489876265466825"/></g><g transform="rotate(-90.0, -0.7196520348430974, 0.219910011248594)"><polyline points="-0.7196520348430974,0.234910011248594
--0.7196520348430974,0.20491001124859398"/></g><g transform="rotate(-90.0, -0.7196520348430974, 0.12992125984251973)"><polyline points="-0.7196520348430974,0.14492125984251975
--0.7196520348430974,0.11492125984251973"/></g><g transform="rotate(-90.0, -0.7196520348430974, 3.9932508436445524e-2)"><polyline points="-0.7196520348430974,5.4932508436445524e-2
--0.7196520348430974,2.4932508436445525e-2"/></g><g transform="rotate(-90.0, -0.7196520348430974, -5.005624296962874e-2)"><polyline points="-0.7196520348430974,-3.505624296962874e-2
--0.7196520348430974,-6.505624296962874e-2"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.14004499437570306)"><polyline points="-0.7196520348430974,-0.12504499437570304
--0.7196520348430974,-0.15504499437570307"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.23003374578177727)"><polyline points="-0.7196520348430974,-0.21503374578177725
--0.7196520348430974,-0.24503374578177728"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.3200224971878515)"><polyline points="-0.7196520348430974,-0.30502249718785146
--0.7196520348430974,-0.3350224971878515"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.4100112485939257)"><polyline points="-0.7196520348430974,-0.39501124859392567
--0.7196520348430974,-0.4250112485939257"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.4999999999999999)"><polyline points="-0.7196520348430974,-0.4849999999999999
--0.7196520348430974,-0.5149999999999999"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="0.8998875140607423" width="4.65816809775943e-3" x="-0.7080066145986988" y="-0.4999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,0.39988751406074247
--0.6474504293278263,-0.4999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.5077053863950438,0.39988751406074247
--0.5077053863950438,-0.4999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.36796034346226103,0.39988751406074247
--0.36796034346226103,-0.4999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.22821530052947847,0.39988751406074247
--0.22821530052947847,-0.4999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-8.84702575966958e-2,0.39988751406074247
--8.84702575966958e-2,-0.4999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="5.127478533608665e-2,0.39988751406074247
-5.127478533608665e-2,-0.4999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.19101982826886943,0.39988751406074247
-0.19101982826886943,-0.4999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.33076487120165177,0.39988751406074247
-0.33076487120165177,-0.4999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.4705099141344349,0.39988751406074247
-0.4705099141344349,-0.4999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.6102549570672173,0.39988751406074247
-0.6102549570672173,-0.4999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.7499999999999998,0.39988751406074247
-0.7499999999999998,-0.4999999999999999"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.6474504293278263" y="0.5">-0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.5077053863950438" y="0.5">-0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.36796034346226103" y="0.5">-0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.22821530052947847" y="0.5">-0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-8.84702575966958e-2" y="0.5">-0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="5.127478533608665e-2" y="0.5">0.0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.19101982826886943" y="0.5">0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.33076487120165177" y="0.5">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.4705099141344349" y="0.5">0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.6102549570672173" y="0.5">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.7499999999999998" y="0.5">0.5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="-0.6474504293278263,0.4396344206974129
--0.6474504293278263,0.40963442069741285"/><polyline points="-0.5077053863950438,0.4396344206974129
--0.5077053863950438,0.40963442069741285"/><polyline points="-0.36796034346226103,0.4396344206974129
--0.36796034346226103,0.40963442069741285"/><polyline points="-0.22821530052947847,0.4396344206974129
--0.22821530052947847,0.40963442069741285"/><polyline points="-8.84702575966958e-2,0.4396344206974129
--8.84702575966958e-2,0.40963442069741285"/><polyline points="5.127478533608665e-2,0.4396344206974129
-5.127478533608665e-2,0.40963442069741285"/><polyline points="0.19101982826886943,0.4396344206974129
-0.19101982826886943,0.40963442069741285"/><polyline points="0.33076487120165177,0.4396344206974129
-0.33076487120165177,0.40963442069741285"/><polyline points="0.4705099141344349,0.4396344206974129
-0.4705099141344349,0.40963442069741285"/><polyline points="0.6102549570672173,0.4396344206974129
-0.6102549570672173,0.40963442069741285"/><polyline points="0.7499999999999998,0.4396344206974129
-0.7499999999999998,0.40963442069741285"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.499437570303688e-3" width="1.397450429327826" x="-0.6474504293278263" y="0.4088863892013499"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="6.0e-3" fill="#ffffff"><rect height="0.45138357705286847" width="0.676366007794668" x="2.332577674953007e-2" y="-0.4517660292463441"/></g><g fill-opacity="1.0" font-size="4.8e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="5.127478533608665e-2" y="-5.005624296962874e-2">blank</text></g><g fill-opacity="1.0" font-size="4.8e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="5.127478533608665e-2" y="-0.11700787401574797">abcdefghijklmnopqrst</text></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="3.0e-3" fill="#a6cee3"><rect height="3.599999999999999e-2" width="3.600000000000003e-2" x="0.553126345046038" y="-0.1456985376827896"/></g><g fill-opacity="1.0" font-size="4.8e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="5.127478533608665e-2" y="-0.1839595050618671">line</text></g><g stroke-opacity="0.3" stroke="#a6cee3" stroke-width="1.2e-2" fill="none"><polyline points="0.5543569398941042,-0.19465016872890883
-0.6214345605018397,-0.19465016872890883"/></g><g fill-opacity="1.0" font-size="4.8e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="5.127478533608665e-2" y="-0.2509111361079863">text</text></g><g fill-opacity="1.0" font-size="3.6e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="0.5543569398941042" y="-0.2509111361079863">content</text></g><g fill-opacity="1.0" font-size="4.8e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="5.127478533608665e-2" y="-0.31786276715410555">rect</text></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="3.0e-3" fill="#1f78b4"><rect height="3.239595050618682e-2" width="3.353881030386763e-2" x="0.5543569398941042" y="-0.3502587176602924"/></g><g fill-opacity="1.0" font-size="4.8e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="5.127478533608665e-2" y="-0.3848143982002248">glyph</text></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="3.0e-3" fill="#a6cee3"><rect height="3.600000000000003e-2" width="3.600000000000003e-2" x="0.553126345046038" y="-0.41350506186726643"/></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.87 -0.52 1.6775 1.0662500000000001" width="471.9812426729191" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="0.8052502315094416" width="1.3974504293278263" x="-0.6474504293278263" y="-0.39483431976486705"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,0.4104159117445746
+0.75,0.4104159117445746"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,0.32989088859363047
+0.75,0.32989088859363047"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,0.2493658654426863
+0.75,0.2493658654426863"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,0.16884084229174212
+0.75,0.16884084229174212"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,8.8315819140798e-2
+0.75,8.8315819140798e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,7.7907959898537715e-3
+0.75,7.7907959898537715e-3"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-7.273422716109057e-2
+0.75,-7.273422716109057e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-0.1532592503120347
+0.75,-0.1532592503120347"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-0.2337842734629787
+0.75,-0.2337842734629787"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-0.31430929661392293
+0.75,-0.31430929661392293"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-0.39483431976486705
+0.75,-0.39483431976486705"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.42209204010146156">-0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.3415670169505174">-0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.26104199379957327">-0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.18051697064862904">-0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="9.999194749768486e-2">-0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="1.9466924346740633e-2">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-6.105809880420354e-2">0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.14158312195514777">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.2221081451060919">0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.302633168257036">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.38315819140798013">0.5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><g transform="rotate(-90.0, -0.7196520348430974, 0.4104159117445746)"><polyline points="-0.7196520348430974,0.4254159117445746
+-0.7196520348430974,0.3954159117445746"/></g><g transform="rotate(-90.0, -0.7196520348430974, 0.32989088859363047)"><polyline points="-0.7196520348430974,0.3448908885936305
+-0.7196520348430974,0.31489088859363046"/></g><g transform="rotate(-90.0, -0.7196520348430974, 0.2493658654426863)"><polyline points="-0.7196520348430974,0.2643658654426863
+-0.7196520348430974,0.23436586544268628"/></g><g transform="rotate(-90.0, -0.7196520348430974, 0.16884084229174212)"><polyline points="-0.7196520348430974,0.18384084229174213
+-0.7196520348430974,0.1538408422917421"/></g><g transform="rotate(-90.0, -0.7196520348430974, 8.8315819140798e-2)"><polyline points="-0.7196520348430974,0.103315819140798
+-0.7196520348430974,7.3315819140798e-2"/></g><g transform="rotate(-90.0, -0.7196520348430974, 7.7907959898537715e-3)"><polyline points="-0.7196520348430974,2.279079598985377e-2
+-0.7196520348430974,-7.209204010146228e-3"/></g><g transform="rotate(-90.0, -0.7196520348430974, -7.273422716109057e-2)"><polyline points="-0.7196520348430974,-5.773422716109057e-2
+-0.7196520348430974,-8.773422716109057e-2"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.1532592503120347)"><polyline points="-0.7196520348430974,-0.13825925031203468
+-0.7196520348430974,-0.1682592503120347"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.2337842734629787)"><polyline points="-0.7196520348430974,-0.21878427346297868
+-0.7196520348430974,-0.2487842734629787"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.31430929661392293)"><polyline points="-0.7196520348430974,-0.2993092966139229
+-0.7196520348430974,-0.32930929661392294"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.39483431976486705)"><polyline points="-0.7196520348430974,-0.37983431976486703
+-0.7196520348430974,-0.40983431976486706"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="0.8052502315094416" width="4.65816809775943e-3" x="-0.7080066145986988" y="-0.39483431976486705"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,0.4104159117445746
+-0.6474504293278263,-0.39483431976486705"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.5077053863950438,0.4104159117445746
+-0.5077053863950438,-0.39483431976486705"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.367960343462261,0.4104159117445746
+-0.367960343462261,-0.39483431976486705"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.22821530052947825,0.4104159117445746
+-0.22821530052947825,-0.39483431976486705"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-8.847025759669558e-2,0.4104159117445746
+-8.847025759669558e-2,-0.39483431976486705"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="5.127478533608687e-2,0.4104159117445746
+5.127478533608687e-2,-0.39483431976486705"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.19101982826886954,0.4104159117445746
+0.19101982826886954,-0.39483431976486705"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.330764871201652,0.4104159117445746
+0.330764871201652,-0.39483431976486705"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.4705099141344351,0.4104159117445746
+0.4705099141344351,-0.39483431976486705"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.6102549570672173,0.4104159117445746
+0.6102549570672173,-0.39483431976486705"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.75,0.4104159117445746
+0.75,-0.39483431976486705"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.6474504293278263" y="0.5">-0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.5077053863950438" y="0.5">-0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.367960343462261" y="0.5">-0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.22821530052947825" y="0.5">-0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-8.847025759669558e-2" y="0.5">-0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="5.127478533608687e-2" y="0.5">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.19101982826886954" y="0.5">0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.330764871201652" y="0.5">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.4705099141344351" y="0.5">0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.6102549570672173" y="0.5">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.75" y="0.5">0.5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="-0.6474504293278263,0.4475602931110843
+-0.6474504293278263,0.4175602931110843"/><polyline points="-0.5077053863950438,0.4475602931110843
+-0.5077053863950438,0.4175602931110843"/><polyline points="-0.367960343462261,0.4475602931110843
+-0.367960343462261,0.4175602931110843"/><polyline points="-0.22821530052947825,0.4475602931110843
+-0.22821530052947825,0.4175602931110843"/><polyline points="-8.847025759669558e-2,0.4475602931110843
+-8.847025759669558e-2,0.4175602931110843"/><polyline points="5.127478533608687e-2,0.4475602931110843
+5.127478533608687e-2,0.4175602931110843"/><polyline points="0.19101982826886954,0.4475602931110843
+0.19101982826886954,0.4175602931110843"/><polyline points="0.330764871201652,0.4475602931110843
+0.330764871201652,0.4175602931110843"/><polyline points="0.4705099141344351,0.4475602931110843
+0.4705099141344351,0.4175602931110843"/><polyline points="0.6102549570672173,0.4475602931110843
+0.6102549570672173,0.4175602931110843"/><polyline points="0.75,0.4475602931110843
+0.75,0.4175602931110843"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.026251157547234e-3" width="1.3974504293278263" x="-0.6474504293278263" y="0.41846841405966906"/></g><g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="6.0e-3" fill="#ffffff"><rect height="0.5053750452953258" width="0.676366007794668" x="2.332577674953029e-2" y="-0.47342674236018867"/></g><g fill-opacity="1.0" font-size="4.8e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="5.127478533608687e-2" y="-1.2501509844184078e-2">blank</text></g><g></g><g fill-opacity="1.0" font-size="4.8e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="5.127478533608687e-2" y="-9.27044329025245e-2">abcdefghijklmnopqrst</text></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="3.0e-3" fill="#a6cee3"><rect height="3.6000000000000004e-2" width="3.600000000000003e-2" x="0.5531263450460382" y="-0.10526899383983578"/></g><g fill-opacity="1.0" font-size="4.8e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="5.127478533608687e-2" y="-0.17290735596086482">line</text></g><g stroke-opacity="0.3" stroke="#a6cee3" stroke-width="1.2e-2" fill="none"><polyline points="0.5543569398941046,-0.1574465515158835
+0.6214345605018399,-0.1574465515158835"/></g><g fill-opacity="1.0" font-size="4.8e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="5.127478533608687e-2" y="-0.25311027901920535">text</text></g><g fill-opacity="1.0" font-size="3.6e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="0.5543569398941046" y="-0.24803720256069572">content</text></g><g fill-opacity="1.0" font-size="4.8e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="5.127478533608687e-2" y="-0.33331320207754567">rect</text></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="3.0e-3" fill="#1f78b4"><rect height="2.8989008334339927e-2" width="3.3538810303867406e-2" x="0.5543569398941046" y="-0.3432177799251117"/></g><g fill-opacity="1.0" font-size="4.8e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="5.127478533608687e-2" y="-0.4135161251358861">glyph</text></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="3.0e-3" fill="#a6cee3"><rect height="3.600000000000003e-2" width="3.600000000000003e-2" x="0.5531263450460382" y="-0.42608068607319727"/></g><g></g></svg>
diff --git a/other/lglyph.svg b/other/lglyph.svg
new file mode 100644
--- /dev/null
+++ b/other/lglyph.svg
@@ -0,0 +1,1 @@
+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.8300000000000001 -0.634 1.6600000000000001 1.159" width="429.6807592752373" xmlns:xlink="http://www.w3.org/1999/xlink"><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.75" y="0.5">0,0</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.75" y="0.30000000000000004">0,1</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.75" y="0.10000000000000003">0,2</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.75" y="-0.10000000000000009">0,3</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.75" y="-0.29999999999999993">0,4</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.75" y="-0.5">0,5</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.44999999999999996" y="0.5">1,0</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.44999999999999996" y="0.30000000000000004">1,1</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.44999999999999996" y="0.10000000000000003">1,2</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.44999999999999996" y="-0.10000000000000009">1,3</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.44999999999999996" y="-0.29999999999999993">1,4</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.44999999999999996" y="-0.5">1,5</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.1499999999999999" y="0.5">2,0</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.1499999999999999" y="0.30000000000000004">2,1</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.1499999999999999" y="0.10000000000000003">2,2</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.1499999999999999" y="-0.10000000000000009">2,3</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.1499999999999999" y="-0.29999999999999993">2,4</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.1499999999999999" y="-0.5">2,5</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.15000000000000013" y="0.5">3,0</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.15000000000000013" y="0.30000000000000004">3,1</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.15000000000000013" y="0.10000000000000003">3,2</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.15000000000000013" y="-0.10000000000000009">3,3</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.15000000000000013" y="-0.29999999999999993">3,4</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.15000000000000013" y="-0.5">3,5</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.4500000000000002" y="0.5">4,0</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.4500000000000002" y="0.30000000000000004">4,1</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.4500000000000002" y="0.10000000000000003">4,2</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.4500000000000002" y="-0.10000000000000009">4,3</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.4500000000000002" y="-0.29999999999999993">4,4</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.4500000000000002" y="-0.5">4,5</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.75" y="0.5">5,0</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.75" y="0.30000000000000004">5,1</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.75" y="0.10000000000000003">5,2</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.75" y="-0.10000000000000009">5,3</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.75" y="-0.29999999999999993">5,4</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.75" y="-0.5">5,5</text></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="0.495"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="0.29500000000000004"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="9.500000000000003e-2"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="-0.1050000000000001"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="-0.30499999999999994"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="-0.505"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="0.495"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="0.29500000000000004"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="9.500000000000003e-2"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="-0.1050000000000001"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="-0.30499999999999994"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="-0.505"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="0.495"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="0.29500000000000004"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="9.500000000000003e-2"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="-0.1050000000000001"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="-0.30499999999999994"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="-0.505"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="0.495"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="0.29500000000000004"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="9.500000000000003e-2"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="-0.1050000000000001"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="-0.30499999999999994"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="-0.505"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="0.495"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="0.29500000000000004"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="9.500000000000003e-2"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="-0.1050000000000001"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="-0.30499999999999994"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="-0.505"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="0.495"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="0.29500000000000004"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="9.500000000000003e-2"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="-0.1050000000000001"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="-0.30499999999999994"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="-0.505"/></g></svg>
diff --git a/other/line.svg b/other/line.svg
new file mode 100644
--- /dev/null
+++ b/other/line.svg
@@ -0,0 +1,44 @@
+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.845 -0.7217988346281908 1.615 1.44075" width="336.283185840708" xmlns:xlink="http://www.w3.org/1999/xlink"><g transform="translate(0.7625, 0.72875)" fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="end"><text transform="rotate(-0.0, -5.4741373256744774e-2, -5.604883462819088e-2)" x="-5.4741373256744774e-2" y="-5.604883462819088e-2">An example from chart-svg</text></g><g transform="translate(-6.87875e-2, -0.57175)" fill-opacity="1.0" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text transform="rotate(-0.0, -5.4741373256744774e-2, -5.604883462819088e-2)" x="-5.4741373256744774e-2" y="-5.604883462819088e-2">Line Chart</text></g><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="0.8879023307436182" width="1.2639916857435782" x="-0.6867372161285339" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6867372161285339,0.38790233074361824
+0.5772544696150443,0.38790233074361824"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6867372161285339,0.2991120976692564
+0.5772544696150443,0.2991120976692564"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6867372161285339,0.21032186459489455
+0.5772544696150443,0.21032186459489455"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6867372161285339,0.1215316315205327
+0.5772544696150443,0.1215316315205327"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6867372161285339,3.2741398446170966e-2
+0.5772544696150443,3.2741398446170966e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6867372161285339,-5.604883462819088e-2
+0.5772544696150443,-5.604883462819088e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6867372161285339,-0.14483906770255284
+0.5772544696150443,-0.14483906770255284"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6867372161285339,-0.23362930077691457
+0.5772544696150443,-0.23362930077691457"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6867372161285339,-0.32241953385127653
+0.5772544696150443,-0.32241953385127653"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6867372161285339,-0.41120976692563826
+0.5772544696150443,-0.41120976692563826"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6867372161285339,-0.5
+0.5772544696150443,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.4007769145394007">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.3119866814650389">0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.22319644839067704">1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.1344062153163152">1.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="4.5615982241953346e-2">2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-4.3174250832408445e-2">2.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.1319644839067704">3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.22075471698113203">3.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.309544950055494">4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.3983351831298557">4.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.4871254162042177">5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><g transform="rotate(-90.0, -0.7225503138912686, 0.38790233074361824)"><polyline points="-0.7225503138912686,0.40290233074361825
+-0.7225503138912686,0.3729023307436182"/></g><g transform="rotate(-90.0, -0.7225503138912686, 0.2991120976692564)"><polyline points="-0.7225503138912686,0.3141120976692564
+-0.7225503138912686,0.2841120976692564"/></g><g transform="rotate(-90.0, -0.7225503138912686, 0.21032186459489455)"><polyline points="-0.7225503138912686,0.22532186459489456
+-0.7225503138912686,0.19532186459489453"/></g><g transform="rotate(-90.0, -0.7225503138912686, 0.1215316315205327)"><polyline points="-0.7225503138912686,0.13653163152053271
+-0.7225503138912686,0.1065316315205327"/></g><g transform="rotate(-90.0, -0.7225503138912686, 3.2741398446170966e-2)"><polyline points="-0.7225503138912686,4.7741398446170966e-2
+-0.7225503138912686,1.7741398446170967e-2"/></g><g transform="rotate(-90.0, -0.7225503138912686, -5.604883462819088e-2)"><polyline points="-0.7225503138912686,-4.104883462819088e-2
+-0.7225503138912686,-7.104883462819088e-2"/></g><g transform="rotate(-90.0, -0.7225503138912686, -0.14483906770255284)"><polyline points="-0.7225503138912686,-0.12983906770255282
+-0.7225503138912686,-0.15983906770255285"/></g><g transform="rotate(-90.0, -0.7225503138912686, -0.23362930077691457)"><polyline points="-0.7225503138912686,-0.21862930077691456
+-0.7225503138912686,-0.24862930077691459"/></g><g transform="rotate(-90.0, -0.7225503138912686, -0.32241953385127653)"><polyline points="-0.7225503138912686,-0.3074195338512765
+-0.7225503138912686,-0.33741953385127654"/></g><g transform="rotate(-90.0, -0.7225503138912686, -0.41120976692563826)"><polyline points="-0.7225503138912686,-0.39620976692563825
+-0.7225503138912686,-0.4262097669256383"/></g><g transform="rotate(-90.0, -0.7225503138912686, -0.5)"><polyline points="-0.7225503138912686,-0.485
+-0.7225503138912686,-0.515"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="0.8879023307436182" width="4.213305619145236e-3" x="-0.7120170498434055" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6867372161285339,0.38790233074361824
+-0.6867372161285339,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.47607193517127083,0.38790233074361824
+-0.47607193517127083,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.2654066542140078,0.38790233074361824
+-0.2654066542140078,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-5.4741373256744774e-2,0.38790233074361824
+-5.4741373256744774e-2,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.15592390770051834,0.38790233074361824
+0.15592390770051834,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.36658918865778123,0.38790233074361824
+0.36658918865778123,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.5772544696150443,0.38790233074361824
+0.5772544696150443,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.6867372161285339" y="0.5">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.47607193517127083" y="0.5">0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.2654066542140078" y="0.5">1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-5.4741373256744774e-2" y="0.5">1.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.15592390770051834" y="0.5">2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.36658918865778123" y="0.5">2.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.5772544696150443" y="0.5">3</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="-0.6867372161285339,0.440638179800222
+-0.6867372161285339,0.410638179800222"/><polyline points="-0.47607193517127083,0.440638179800222
+-0.47607193517127083,0.410638179800222"/><polyline points="-0.2654066542140078,0.440638179800222
+-0.2654066542140078,0.410638179800222"/><polyline points="-5.4741373256744774e-2,0.440638179800222
+-5.4741373256744774e-2,0.410638179800222"/><polyline points="0.15592390770051834,0.440638179800222
+0.15592390770051834,0.410638179800222"/><polyline points="0.36658918865778123,0.440638179800222
+0.36658918865778123,0.410638179800222"/><polyline points="0.5772544696150443,0.440638179800222
+0.5772544696150443,0.410638179800222"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.439511653718142e-3" width="1.2639916857435782" x="-0.6867372161285339" y="0.4100998890122087"/></g><g stroke-opacity="1.0" stroke="#a6cee3" stroke-width="1.5e-2" fill="none"><polyline points="-0.6867372161285339,0.21032186459489455
+-0.2654066542140078,0.21032186459489455
+0.15592390770051834,-0.5"/></g><g stroke-opacity="1.0" stroke="#1f78b4" stroke-width="3.0e-2" fill="none"><polyline points="-0.6867372161285339,0.38790233074361824
+0.49298835723213896,-0.14483906770255284"/></g><g stroke-opacity="1.0" stroke="#fb9a99" stroke-width="1.0e-2" fill="none"><polyline points="-0.47607193517127083,-0.32241953385127653
+-0.47607193517127083,0.38790233074361824"/></g><g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#ffffff"><rect height="0.30799112097669257" width="0.37077089448478295" x="0.3560559246099182" y="-8.657047724750278e-2"/></g><g fill-opacity="1.0" font-size="6.25e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="0.36658918865778123" y="0.18118756936736963">vertical</text></g><g stroke-opacity="1.0" stroke="#fb9a99" stroke-width="1.0e-2" fill="none"><polyline points="0.6193875258064969,0.20588235294117646
+0.7036536381894023,0.20588235294117646"/></g><g fill-opacity="1.0" font-size="6.25e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="0.36658918865778123" y="7.852386237513875e-2">line</text></g><g stroke-opacity="1.0" stroke="#1f78b4" stroke-width="3.0e-2" fill="none"><polyline points="0.6193875258064969,9.433962264150941e-2
+0.7036536381894023,9.433962264150941e-2"/></g><g fill-opacity="1.0" font-size="6.25e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="0.36658918865778123" y="-2.4139844617092177e-2">hockey</text></g><g stroke-opacity="1.0" stroke="#a6cee3" stroke-width="1.5e-2" fill="none"><polyline points="0.6193875258064969,-1.6648168701443034e-3
+0.7036536381894023,-1.6648168701443034e-3"/></g><g></g></svg>
diff --git a/other/linehud.svg b/other/linehud.svg
deleted file mode 100644
--- a/other/linehud.svg
+++ /dev/null
@@ -1,49 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.87 -0.5532016310461191 1.6774999999999998 1.099451631046119" width="450.0" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="0.8998875140607423" width="1.397450429327826" x="-0.6474504293278263" y="-0.4999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,0.39988751406074247
-0.7499999999999998,0.39988751406074247"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,0.32489688788901394
-0.7499999999999998,0.32489688788901394"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,0.24990626171728542
-0.7499999999999998,0.24990626171728542"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,0.1749156355455569
-0.7499999999999998,0.1749156355455569"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,9.992500937382837e-2
-0.7499999999999998,9.992500937382837e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,2.493438320209984e-2
-0.7499999999999998,2.493438320209984e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-5.005624296962874e-2
-0.7499999999999998,-5.005624296962874e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-0.1250468691413572
-0.7499999999999998,-0.1250468691413572"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-0.20003749531308568
-0.7499999999999998,-0.20003749531308568"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-0.27502812148481426
-0.7499999999999998,-0.27502812148481426"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-0.35001874765654284
-0.7499999999999998,-0.35001874765654284"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-0.4250093738282713
-0.7499999999999998,-0.4250093738282713"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-0.4999999999999999
-0.7499999999999998,-0.4999999999999999"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.4129358830146232">-0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.3379452568428947">0.0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.2629546306711662">0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.18796400449943768">1.0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.11297337832770915">1.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="3.798275215598057e-2">2.0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-3.700787401574801e-2">2.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.11199850018747648">3.0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.18698912635920495">3.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.2619797525309334">4.0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.3369703787026621">4.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.4119610048743906">5.0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.48695163104611905">5.5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><g transform="rotate(-90.0, -0.7196520348430974, 0.39988751406074247)"><polyline points="-0.7196520348430974,0.4148875140607425
--0.7196520348430974,0.38488751406074245"/></g><g transform="rotate(-90.0, -0.7196520348430974, 0.32489688788901394)"><polyline points="-0.7196520348430974,0.33989688788901395
--0.7196520348430974,0.30989688788901393"/></g><g transform="rotate(-90.0, -0.7196520348430974, 0.24990626171728542)"><polyline points="-0.7196520348430974,0.26490626171728543
--0.7196520348430974,0.2349062617172854"/></g><g transform="rotate(-90.0, -0.7196520348430974, 0.1749156355455569)"><polyline points="-0.7196520348430974,0.1899156355455569
--0.7196520348430974,0.15991563554555688"/></g><g transform="rotate(-90.0, -0.7196520348430974, 9.992500937382837e-2)"><polyline points="-0.7196520348430974,0.11492500937382837
--0.7196520348430974,8.492500937382837e-2"/></g><g transform="rotate(-90.0, -0.7196520348430974, 2.493438320209984e-2)"><polyline points="-0.7196520348430974,3.993438320209984e-2
--0.7196520348430974,9.934383202099842e-3"/></g><g transform="rotate(-90.0, -0.7196520348430974, -5.005624296962874e-2)"><polyline points="-0.7196520348430974,-3.505624296962874e-2
--0.7196520348430974,-6.505624296962874e-2"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.1250468691413572)"><polyline points="-0.7196520348430974,-0.11004686914135721
--0.7196520348430974,-0.14004686914135722"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.20003749531308568)"><polyline points="-0.7196520348430974,-0.18503749531308566
--0.7196520348430974,-0.2150374953130857"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.27502812148481426)"><polyline points="-0.7196520348430974,-0.26002812148481425
--0.7196520348430974,-0.29002812148481427"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.35001874765654284)"><polyline points="-0.7196520348430974,-0.3350187476565428
--0.7196520348430974,-0.36501874765654285"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.4250093738282713)"><polyline points="-0.7196520348430974,-0.4100093738282713
--0.7196520348430974,-0.4400093738282713"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.4999999999999999)"><polyline points="-0.7196520348430974,-0.4849999999999999
--0.7196520348430974,-0.5149999999999999"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="0.8998875140607423" width="4.65816809775943e-3" x="-0.7080066145986988" y="-0.4999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,0.39988751406074247
--0.6474504293278263,-0.4999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.47276912566184803,0.39988751406074247
--0.47276912566184803,-0.4999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.2980878219958698,0.39988751406074247
--0.2980878219958698,-0.4999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.12340651832989158,0.39988751406074247
--0.12340651832989158,-0.4999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="5.127478533608665e-2,0.39988751406074247
-5.127478533608665e-2,-0.4999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.2259560890020651,0.39988751406074247
-0.2259560890020651,-0.4999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.4006373926680433,0.39988751406074247
-0.4006373926680433,-0.4999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.5753186963340216,0.39988751406074247
-0.5753186963340216,-0.4999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.7499999999999998,0.39988751406074247
-0.7499999999999998,-0.4999999999999999"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.6474504293278263" y="0.5">-0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.47276912566184803" y="0.5">0.0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.2980878219958698" y="0.5">0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.12340651832989158" y="0.5">1.0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="5.127478533608665e-2" y="0.5">1.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.2259560890020651" y="0.5">2.0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.4006373926680433" y="0.5">2.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.5753186963340216" y="0.5">3.0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.7499999999999998" y="0.5">3.5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="-0.6474504293278263,0.4396344206974129
--0.6474504293278263,0.40963442069741285"/><polyline points="-0.47276912566184803,0.4396344206974129
--0.47276912566184803,0.40963442069741285"/><polyline points="-0.2980878219958698,0.4396344206974129
--0.2980878219958698,0.40963442069741285"/><polyline points="-0.12340651832989158,0.4396344206974129
--0.12340651832989158,0.40963442069741285"/><polyline points="5.127478533608665e-2,0.4396344206974129
-5.127478533608665e-2,0.40963442069741285"/><polyline points="0.2259560890020651,0.4396344206974129
-0.2259560890020651,0.40963442069741285"/><polyline points="0.4006373926680433,0.4396344206974129
-0.4006373926680433,0.40963442069741285"/><polyline points="0.5753186963340216,0.4396344206974129
-0.5753186963340216,0.40963442069741285"/><polyline points="0.7499999999999998,0.4396344206974129
-0.7499999999999998,0.40963442069741285"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.499437570303688e-3" width="1.397450429327826" x="-0.6474504293278263" y="0.4088863892013499"/></g><g stroke-opacity="1.0" stroke="#a6cee3" stroke-width="1.5e-2" fill="none"><polyline points="-0.47276912566184803,0.1749156355455569
--0.12340651832989158,0.1749156355455569
-0.2259560890020651,-0.4250093738282713"/></g><g stroke-opacity="1.0" stroke="#1f78b4" stroke-width="3.0e-2" fill="none"><polyline points="-0.47276912566184803,0.32489688788901394
-0.5753186963340216,-0.1250468691413571"/></g><g stroke-opacity="1.0" stroke="#e31a1c" stroke-width="1.0e-2" fill="none"><polyline points="-0.2980878219958698,-0.27502812148481426
--0.2980878219958698,0.32489688788901394"/></g></svg>
diff --git a/other/lines.svg b/other/lines.svg
--- a/other/lines.svg
+++ b/other/lines.svg
@@ -1,5 +1,5 @@
-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.785 -0.5275 1.57 1.0625" width="450.0" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="1.0" stroke="#a6cee3" stroke-width="1.5e-2" fill="none"><polyline points="-0.75,0.3
--0.25,0.3
-0.25,-0.5"/></g><g stroke-opacity="1.0" stroke="#1f78b4" stroke-width="3.0e-2" fill="none"><polyline points="-0.75,0.5
-0.75,-0.10000000000000009"/></g><g stroke-opacity="1.0" stroke="#e31a1c" stroke-width="1.0e-2" fill="none"><polyline points="-0.5,-0.30000000000000004
--0.5,0.5"/></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.785 -0.5275 1.57 1.0625" width="443.2941176470589" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="1.0" stroke="#a6cee3" stroke-width="1.5e-2" fill="none"><polyline points="-0.75,0.29999999999999993
+-0.28125,0.29999999999999993
+0.1875,-0.5"/></g><g stroke-opacity="1.0" stroke="#1f78b4" stroke-width="3.0e-2" fill="none"><polyline points="-0.75,0.5
+0.75,-0.10000000000000009"/></g><g stroke-opacity="1.0" stroke="#e31a1c" stroke-width="1.0e-2" fill="none"><polyline points="-0.5156249999999999,-0.30000000000000016
+-0.5156249999999999,0.5"/></g></svg>
diff --git a/other/lineshud.svg b/other/lineshud.svg
new file mode 100644
--- /dev/null
+++ b/other/lineshud.svg
@@ -0,0 +1,43 @@
+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.845 -0.5533754162042175 1.6524999999999999 1.0996254162042174" width="450.8353414667996" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="0.8879023307436182" width="1.4285034045997809" x="-0.678503404599781" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.678503404599781,0.3879023307436182
+0.7499999999999998,0.3879023307436182"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.678503404599781,0.2991120976692564
+0.7499999999999998,0.2991120976692564"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.678503404599781,0.21032186459489455
+0.7499999999999998,0.21032186459489455"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.678503404599781,0.1215316315205327
+0.7499999999999998,0.1215316315205327"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.678503404599781,3.2741398446170966e-2
+0.7499999999999998,3.2741398446170966e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.678503404599781,-5.604883462819088e-2
+0.7499999999999998,-5.604883462819088e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.678503404599781,-0.14483906770255284
+0.7499999999999998,-0.14483906770255284"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.678503404599781,-0.23362930077691457
+0.7499999999999998,-0.23362930077691457"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.678503404599781,-0.3224195338512764
+0.7499999999999998,-0.3224195338512764"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.678503404599781,-0.41120976692563815
+0.7499999999999998,-0.41120976692563815"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.678503404599781,-0.5
+0.7499999999999998,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.4007769145394007">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.31198668146503883">0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.22319644839067704">1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.1344062153163152">1.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="4.5615982241953346e-2">2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-4.3174250832408445e-2">2.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.1319644839067704">3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.22075471698113203">3.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.309544950055494">4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.3983351831298557">4.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.48712541620421745">5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><g transform="rotate(-90.0, -0.7189776677301081, 0.3879023307436182)"><polyline points="-0.7189776677301081,0.4029023307436182
+-0.7189776677301081,0.37290233074361817"/></g><g transform="rotate(-90.0, -0.7189776677301081, 0.2991120976692564)"><polyline points="-0.7189776677301081,0.3141120976692564
+-0.7189776677301081,0.2841120976692564"/></g><g transform="rotate(-90.0, -0.7189776677301081, 0.21032186459489455)"><polyline points="-0.7189776677301081,0.22532186459489456
+-0.7189776677301081,0.19532186459489453"/></g><g transform="rotate(-90.0, -0.7189776677301081, 0.1215316315205327)"><polyline points="-0.7189776677301081,0.13653163152053271
+-0.7189776677301081,0.1065316315205327"/></g><g transform="rotate(-90.0, -0.7189776677301081, 3.2741398446170966e-2)"><polyline points="-0.7189776677301081,4.7741398446170966e-2
+-0.7189776677301081,1.7741398446170967e-2"/></g><g transform="rotate(-90.0, -0.7189776677301081, -5.604883462819088e-2)"><polyline points="-0.7189776677301081,-4.104883462819088e-2
+-0.7189776677301081,-7.104883462819088e-2"/></g><g transform="rotate(-90.0, -0.7189776677301081, -0.14483906770255284)"><polyline points="-0.7189776677301081,-0.12983906770255282
+-0.7189776677301081,-0.15983906770255285"/></g><g transform="rotate(-90.0, -0.7189776677301081, -0.23362930077691457)"><polyline points="-0.7189776677301081,-0.21862930077691456
+-0.7189776677301081,-0.24862930077691459"/></g><g transform="rotate(-90.0, -0.7189776677301081, -0.3224195338512764)"><polyline points="-0.7189776677301081,-0.3074195338512764
+-0.7189776677301081,-0.33741953385127643"/></g><g transform="rotate(-90.0, -0.7189776677301081, -0.41120976692563815)"><polyline points="-0.7189776677301081,-0.39620976692563814
+-0.7189776677301081,-0.42620976692563817"/></g><g transform="rotate(-90.0, -0.7189776677301081, -0.5)"><polyline points="-0.7189776677301081,-0.485
+-0.7189776677301081,-0.515"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="0.8879023307436182" width="4.76167801533256e-3" x="-0.7070734726917766" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.678503404599781,0.3879023307436182
+-0.678503404599781,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.4744314896569551,0.3879023307436182
+-0.4744314896569551,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.2703595747141293,0.3879023307436182
+-0.2703595747141293,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-6.628765977130358e-2,0.3879023307436182
+-6.628765977130358e-2,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.13778425517152249,0.3879023307436182
+0.13778425517152249,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.3418561701143479,0.3879023307436182
+0.3418561701143479,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.5459280850571739,0.3879023307436182
+0.5459280850571739,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.7499999999999998,0.3879023307436182
+0.7499999999999998,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.678503404599781" y="0.5">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.4744314896569551" y="0.5">0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.2703595747141293" y="0.5">1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-6.628765977130358e-2" y="0.5">1.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.13778425517152249" y="0.5">2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.3418561701143479" y="0.5">2.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.5459280850571739" y="0.5">3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.7499999999999998" y="0.5">3.5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="-0.678503404599781,0.440638179800222
+-0.678503404599781,0.410638179800222"/><polyline points="-0.4744314896569551,0.440638179800222
+-0.4744314896569551,0.410638179800222"/><polyline points="-0.2703595747141293,0.440638179800222
+-0.2703595747141293,0.410638179800222"/><polyline points="-6.628765977130358e-2,0.440638179800222
+-6.628765977130358e-2,0.410638179800222"/><polyline points="0.13778425517152249,0.440638179800222
+0.13778425517152249,0.410638179800222"/><polyline points="0.3418561701143479,0.440638179800222
+0.3418561701143479,0.410638179800222"/><polyline points="0.5459280850571739,0.440638179800222
+0.5459280850571739,0.410638179800222"/><polyline points="0.7499999999999998,0.440638179800222
+0.7499999999999998,0.410638179800222"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.439511653718031e-3" width="1.4285034045997809" x="-0.678503404599781" y="0.41009988901220873"/></g><g stroke-opacity="1.0" stroke="#a6cee3" stroke-width="1.5e-2" fill="none"><polyline points="-0.678503404599781,0.21032186459489455
+-0.2703595747141293,0.21032186459489455
+0.13778425517152249,-0.5"/></g><g stroke-opacity="1.0" stroke="#1f78b4" stroke-width="3.0e-2" fill="none"><polyline points="-0.678503404599781,0.3879023307436182
+0.6275568510343044,-0.14483906770255284"/></g><g stroke-opacity="1.0" stroke="#e31a1c" stroke-width="1.0e-2" fill="none"><polyline points="-0.4744314896569551,-0.3224195338512764
+-0.4744314896569551,0.3879023307436182"/></g><g></g></svg>
diff --git a/other/mempty.svg b/other/mempty.svg
deleted file mode 100644
--- a/other/mempty.svg
+++ /dev/null
@@ -1,1 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.52 -0.52 1.04 1.04" width="450.0" xmlns:xlink="http://www.w3.org/1999/xlink"></svg>
diff --git a/other/path.svg b/other/path.svg
new file mode 100644
--- /dev/null
+++ b/other/path.svg
@@ -0,0 +1,35 @@
+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.6305500425013985 -0.6332836968312198 1.202600085002797 1.2992423977221954" width="277.6849232547761" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="0.89422780474347" width="0.7883172981533015" x="-0.3327672556519032" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.3327672556519032,0.3942278047434697
+0.4555500425013984,0.3942278047434697"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.3327672556519032,0.282449329150536
+0.4555500425013984,0.282449329150536"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.3327672556519032,0.17067085355760225
+0.4555500425013984,0.17067085355760225"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.3327672556519032,5.889237796466851e-2
+0.4555500425013984,5.889237796466851e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.3327672556519032,-5.288609762826513e-2
+0.4555500425013984,-5.288609762826513e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.3327672556519032,-0.16466457322119876
+0.4555500425013984,-0.16466457322119876"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.3327672556519032,-0.2764430488141326
+0.4555500425013984,-0.2764430488141326"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.3327672556519032,-0.38822152440706614
+0.4555500425013984,-0.38822152440706614"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.3327672556519032,-0.5
+0.4555500425013984,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4555500425013984" y="0.40719410791224997">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4555500425013984" y="0.29541563231931633">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4555500425013984" y="0.1836371567263826">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4555500425013984" y="7.185868113344884e-2">0.6</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4555500425013984" y="-3.991979445948479e-2">0.8</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4555500425013984" y="-0.15169827005241854">1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4555500425013984" y="-0.2634767456453523">1.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4555500425013984" y="-0.37525522123828614">1.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4555500425013984" y="-0.4870336968312198">1.6</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><g transform="rotate(-90.0, -0.4262448478148179, 0.3942278047434697)"><polyline points="-0.4262448478148179,0.4092278047434697
+-0.4262448478148179,0.3792278047434697"/></g><g transform="rotate(-90.0, -0.4262448478148179, 0.282449329150536)"><polyline points="-0.4262448478148179,0.297449329150536
+-0.4262448478148179,0.267449329150536"/></g><g transform="rotate(-90.0, -0.4262448478148179, 0.17067085355760225)"><polyline points="-0.4262448478148179,0.18567085355760227
+-0.4262448478148179,0.15567085355760224"/></g><g transform="rotate(-90.0, -0.4262448478148179, 5.889237796466851e-2)"><polyline points="-0.4262448478148179,7.389237796466851e-2
+-0.4262448478148179,4.389237796466851e-2"/></g><g transform="rotate(-90.0, -0.4262448478148179, -5.288609762826513e-2)"><polyline points="-0.4262448478148179,-3.788609762826513e-2
+-0.4262448478148179,-6.788609762826513e-2"/></g><g transform="rotate(-90.0, -0.4262448478148179, -0.16466457322119876)"><polyline points="-0.4262448478148179,-0.14966457322119875
+-0.4262448478148179,-0.17966457322119878"/></g><g transform="rotate(-90.0, -0.4262448478148179, -0.2764430488141326)"><polyline points="-0.4262448478148179,-0.2614430488141326
+-0.4262448478148179,-0.29144304881413263"/></g><g transform="rotate(-90.0, -0.4262448478148179, -0.38822152440706614)"><polyline points="-0.4262448478148179,-0.37322152440706613
+-0.4262448478148179,-0.40322152440706616"/></g><g transform="rotate(-90.0, -0.4262448478148179, -0.5)"><polyline points="-0.4262448478148179,-0.485
+-0.4262448478148179,-0.515"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="0.89422780474347" width="4.498111233550373e-3" x="-0.4149995697309421" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.3327672556519032,0.39422780474346997
+-0.3327672556519032,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.22015049877286003,0.39422780474346997
+-0.22015049877286003,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.10753374189381687,0.39422780474346997
+-0.10753374189381687,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="5.083014985226231e-3,0.39422780474346997
+5.083014985226231e-3,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.11769977186426928,0.39422780474346997
+0.11769977186426928,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.23031652874331232,0.39422780474346997
+0.23031652874331232,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.3429332856223556,0.39422780474346997
+0.3429332856223556,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.4555500425013984,0.39422780474346997
+0.4555500425013984,-0.5"/></g><g fill-opacity="1.0" font-size="3.694245123030814e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, -0.3327672556519032, 0.5)" x="-0.3327672556519032" y="0.5">-0.4</text></g><g fill-opacity="1.0" font-size="3.694245123030814e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, -0.22015049877286003, 0.5)" x="-0.22015049877286003" y="0.5">-0.2</text></g><g fill-opacity="1.0" font-size="3.694245123030814e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, -0.10753374189381687, 0.5)" x="-0.10753374189381687" y="0.5">0</text></g><g fill-opacity="1.0" font-size="3.694245123030814e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, 5.083014985226231e-3, 0.5)" x="5.083014985226231e-3" y="0.5">0.2</text></g><g fill-opacity="1.0" font-size="3.694245123030814e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, 0.11769977186426928, 0.5)" x="0.11769977186426928" y="0.5">0.4</text></g><g fill-opacity="1.0" font-size="3.694245123030814e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, 0.23031652874331232, 0.5)" x="0.23031652874331232" y="0.5">0.6</text></g><g fill-opacity="1.0" font-size="3.694245123030814e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, 0.3429332856223556, 0.5)" x="0.3429332856223556" y="0.5">0.8</text></g><g fill-opacity="1.0" font-size="3.694245123030814e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, 0.4555500425013984, 0.5)" x="0.4555500425013984" y="0.5">1</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="-0.3327672556519032,0.4485738281521824
+-0.3327672556519032,0.41857382815218236"/><polyline points="-0.22015049877286003,0.4485738281521824
+-0.22015049877286003,0.41857382815218236"/><polyline points="-0.10753374189381687,0.4485738281521824
+-0.10753374189381687,0.41857382815218236"/><polyline points="5.083014985226231e-3,0.4485738281521824
+5.083014985226231e-3,0.41857382815218236"/><polyline points="0.11769977186426928,0.4485738281521824
+0.11769977186426928,0.41857382815218236"/><polyline points="0.23031652874331232,0.4485738281521824
+0.23031652874331232,0.41857382815218236"/><polyline points="0.3429332856223556,0.4485738281521824
+0.3429332856223556,0.41857382815218236"/><polyline points="0.4555500425013984,0.4485738281521824
+0.4555500425013984,0.41857382815218236"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.47113902371743e-3" width="0.7883172981533015" x="-0.3327672556519032" y="0.41792484156917165"/></g><g stroke-opacity="0.3" fill-opacity="0.1" stroke="#33cc66" stroke-width="1.0e-2" fill="#e31a1c"><path d="M -0.1075,0.3942 L 0.4556,0.3942 C 0.0051,0.3942 0.0332,-0.1647 0.4556,-0.1647 Q -0.6706,-0.7236 -0.1075,-0.1647 A 0.5620351388274053 0.5599394353943101 30.0 0 0 -0.1075,0.3942"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="3.0e-3" fill="#a6cee3"><rect height="3.0000000000000027e-2" width="3.0e-2" x="-0.12253374189381687" y="0.3792278047434697"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.4405500425013984" y="0.3792278047434697"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.4405500425013984" y="-0.17966457322119878"/><rect height="3.0000000000000027e-2" width="3.0e-2" x="-0.12253374189381687" y="-0.17966457322119878"/><rect height="3.0000000000000027e-2" width="3.0e-2" x="-0.12253374189381687" y="0.3792278047434697"/></g><g></g></svg>
diff --git a/other/pixel.svg b/other/pixel.svg
deleted file mode 100644
# file too large to diff: other/pixel.svg
diff --git a/other/problematic1.svg b/other/problematic1.svg
new file mode 100644
--- /dev/null
+++ b/other/problematic1.svg
@@ -0,0 +1,55 @@
+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-1.095 -0.5533925404566615 2.1314999999999995 1.0996425404566614" width="581.5071502548892" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="0.8867213478164488" width="1.926248750948076" x="-0.9262487509480759" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.9262487509480759,0.3867213478164488
+1.0,0.3867213478164488"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.9262487509480759,0.29804921303480386
+1.0,0.29804921303480386"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.9262487509480759,0.20937707825315893
+1.0,0.20937707825315893"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.9262487509480759,0.12070494347151406
+1.0,0.12070494347151406"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.9262487509480759,3.203280868986924e-2
+1.0,3.203280868986924e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.9262487509480759,-5.663932609177569e-2
+1.0,-5.663932609177569e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.9262487509480759,-0.14531146087342062
+1.0,-0.14531146087342062"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.9262487509480759,-0.23398359565506555
+1.0,-0.23398359565506555"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.9262487509480759,-0.32265573043671036
+1.0,-0.32265573043671036"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.9262487509480759,-0.4113278652183553
+1.0,-0.4113278652183553"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.9262487509480759,-0.5
+1.0,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.0" y="0.39957880735978724">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.0" y="0.3109066725781424">0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.0" y="0.2222345377964975">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.0" y="0.13356240301485256">0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.0" y="4.4890268233207686e-2">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.0" y="-4.3781866548437076e-2">0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.0" y="-0.13245400133008223">0.6</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.0" y="-0.22112613611172705">0.7</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.0" y="-0.30979827089337186">0.8</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.0" y="-0.3984704056750168">0.9</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.0" y="-0.4871425404566615">1</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><g transform="rotate(-90.0, -0.9686262234689335, 0.3867213478164488)"><polyline points="-0.9686262234689335,0.4017213478164488
+-0.9686262234689335,0.3717213478164488"/></g><g transform="rotate(-90.0, -0.9686262234689335, 0.29804921303480386)"><polyline points="-0.9686262234689335,0.3130492130348039
+-0.9686262234689335,0.28304921303480385"/></g><g transform="rotate(-90.0, -0.9686262234689335, 0.20937707825315893)"><polyline points="-0.9686262234689335,0.22437707825315895
+-0.9686262234689335,0.19437707825315892"/></g><g transform="rotate(-90.0, -0.9686262234689335, 0.12070494347151406)"><polyline points="-0.9686262234689335,0.13570494347151407
+-0.9686262234689335,0.10570494347151406"/></g><g transform="rotate(-90.0, -0.9686262234689335, 3.203280868986924e-2)"><polyline points="-0.9686262234689335,4.703280868986924e-2
+-0.9686262234689335,1.703280868986924e-2"/></g><g transform="rotate(-90.0, -0.9686262234689335, -5.663932609177569e-2)"><polyline points="-0.9686262234689335,-4.163932609177569e-2
+-0.9686262234689335,-7.163932609177569e-2"/></g><g transform="rotate(-90.0, -0.9686262234689335, -0.14531146087342062)"><polyline points="-0.9686262234689335,-0.1303114608734206
+-0.9686262234689335,-0.16031146087342063"/></g><g transform="rotate(-90.0, -0.9686262234689335, -0.23398359565506555)"><polyline points="-0.9686262234689335,-0.21898359565506553
+-0.9686262234689335,-0.24898359565506556"/></g><g transform="rotate(-90.0, -0.9686262234689335, -0.32265573043671036)"><polyline points="-0.9686262234689335,-0.30765573043671035
+-0.9686262234689335,-0.3376557304367104"/></g><g transform="rotate(-90.0, -0.9686262234689335, -0.4113278652183553)"><polyline points="-0.9686262234689335,-0.3963278652183553
+-0.9686262234689335,-0.4263278652183553"/></g><g transform="rotate(-90.0, -0.9686262234689335, -0.5)"><polyline points="-0.9686262234689335,-0.485
+-0.9686262234689335,-0.515"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="0.8867213478164488" width="4.815621877370058e-3" x="-0.9565871687755079" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.9262487509480759,0.3867213478164488
+-0.9262487509480759,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.7336238758532685,0.3867213478164488
+-0.7336238758532685,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.5409990007584609,0.3867213478164488
+-0.5409990007584609,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.34837412566365333,0.3867213478164488
+-0.34837412566365333,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.1557492505688457,0.3867213478164488
+-0.1557492505688457,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="3.6875624525961825e-2,0.3867213478164488
+3.6875624525961825e-2,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.22950049962076946,0.3867213478164488
+0.22950049962076946,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.4221253747155771,0.3867213478164488
+0.4221253747155771,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.6147502498103845,0.3867213478164488
+0.6147502498103845,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.8073751249051919,0.3867213478164488
+0.8073751249051919,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.9999999999999996,0.3867213478164488
+0.9999999999999996,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.9262487509480759" y="0.5">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.7336238758532685" y="0.5">0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.5409990007584609" y="0.5">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.34837412566365333" y="0.5">0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.1557492505688457" y="0.5">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="3.6875624525961825e-2" y="0.5">0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.22950049962076946" y="0.5">0.6</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.4221253747155771" y="0.5">0.7</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.6147502498103845" y="0.5">0.8</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.8073751249051919" y="0.5">0.9</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.9999999999999996" y="0.5">1</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="-0.9262487509480759,0.44073708712037246
+-0.9262487509480759,0.41073708712037243"/><polyline points="-0.7336238758532685,0.44073708712037246
+-0.7336238758532685,0.41073708712037243"/><polyline points="-0.5409990007584609,0.44073708712037246
+-0.5409990007584609,0.41073708712037243"/><polyline points="-0.34837412566365333,0.44073708712037246
+-0.34837412566365333,0.41073708712037243"/><polyline points="-0.1557492505688457,0.44073708712037246
+-0.1557492505688457,0.41073708712037243"/><polyline points="3.6875624525961825e-2,0.44073708712037246
+3.6875624525961825e-2,0.41073708712037243"/><polyline points="0.22950049962076946,0.44073708712037246
+0.22950049962076946,0.41073708712037243"/><polyline points="0.4221253747155771,0.44073708712037246
+0.4221253747155771,0.41073708712037243"/><polyline points="0.6147502498103845,0.44073708712037246
+0.6147502498103845,0.41073708712037243"/><polyline points="0.8073751249051919,0.44073708712037246
+0.8073751249051919,0.41073708712037243"/><polyline points="0.9999999999999996,0.44073708712037246
+0.9999999999999996,0.41073708712037243"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.433606739082219e-3" width="1.926248750948076" x="-0.9262487509480759" y="0.4102194635335846"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="1.0e-2" fill="#1f78b4"><path d="M -0.9262,-0.5 A 1.9262487509480752 0.8867213478164487 -0.0 0 0 1.0000,0.3867"/></g><g stroke-opacity="1.0" stroke="#1f78b4" stroke-width="2.0e-3" fill="none"><polyline points="-0.9262487509480759,-0.5
+-0.9025334323973616,-0.36128622031458135
+-0.8319714265945679,-0.22598803424965874
+-0.7163002043044301,-9.743693217508598e-2
+-0.558367974910509,2.1201731139413205e-2
+-0.36206355404750157,0.12700667806388616
+-0.1322206080540761,0.21737263965856574
+0.12550136693440495,0.2900745060415588
+0.4047564005635287,0.343322115978855
+0.6986683071110245,0.37580433659511225
+0.9999999999999996,0.3867213478164488"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="3.0e-3" fill="#a6cee3"><rect height="3.0000000000000027e-2" width="2.9999999999999916e-2" x="0.9849999999999995" y="-0.515"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.9412487509480759" y="-0.515"/><rect height="3.0000000000000027e-2" width="2.9999999999999916e-2" x="0.9849999999999995" y="0.3717213478164488"/></g><g stroke-opacity="1.0" fill-opacity="0.1" stroke="#808080" stroke-width="2.0e-3" fill="#6666cc"><rect height="0.8867213478164488" width="1.9262487509480755" x="-0.9262487509480759" y="-0.5"/></g><g></g></svg>
diff --git a/other/problematic2.svg b/other/problematic2.svg
new file mode 100644
--- /dev/null
+++ b/other/problematic2.svg
@@ -0,0 +1,339 @@
+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-4.185074999999999 -3.53175 7.197575 4.16925" width="517.9042993344126" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="4.0" width="7.0" x="-4.0" y="-3.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-4.0,0.5
+3.0,0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-4.0,-0.0
+3.0,-0.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-4.0,-0.5000000000000001
+3.0,-0.5000000000000001"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-4.0,-1.0000000000000004
+3.0,-1.0000000000000004"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-4.0,-1.5
+3.0,-1.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-4.0,-2.0
+3.0,-2.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-4.0,-2.5
+3.0,-2.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-4.0,-3.0
+3.0,-3.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-4.0,-3.5
+3.0,-3.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-4.085075" y="0.5145">-0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-4.085075" y="1.4499999999999957e-2">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-4.085075" y="-0.48549999999999993">0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-4.085075" y="-0.9855000000000002">1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-4.085075" y="-1.4855">1.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-4.085075" y="-1.9855">2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-4.085075" y="-2.4855">2.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-4.085075" y="-2.9855000000000005">3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-4.085075" y="-3.4855">3.5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><g transform="rotate(-90.0, -4.0525, 0.5)"><polyline points="-4.0525,0.515
+-4.0525,0.485"/></g><g transform="rotate(-90.0, -4.0525, -0.0)"><polyline points="-4.0525,1.5e-2
+-4.0525,-1.5e-2"/></g><g transform="rotate(-90.0, -4.0525, -0.5000000000000001)"><polyline points="-4.0525,-0.4850000000000001
+-4.0525,-0.5150000000000001"/></g><g transform="rotate(-90.0, -4.0525, -1.0000000000000004)"><polyline points="-4.0525,-0.9850000000000004
+-4.0525,-1.0150000000000003"/></g><g transform="rotate(-90.0, -4.0525, -1.5)"><polyline points="-4.0525,-1.485
+-4.0525,-1.515"/></g><g transform="rotate(-90.0, -4.0525, -2.0)"><polyline points="-4.0525,-1.985
+-4.0525,-2.015"/></g><g transform="rotate(-90.0, -4.0525, -2.5)"><polyline points="-4.0525,-2.485
+-4.0525,-2.515"/></g><g transform="rotate(-90.0, -4.0525, -3.0)"><polyline points="-4.0525,-2.985
+-4.0525,-3.015"/></g><g transform="rotate(-90.0, -4.0525, -3.5)"><polyline points="-4.0525,-3.485
+-4.0525,-3.515"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.0" width="4.999999999999893e-3" x="-4.04" y="-3.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-4.0,0.5
+-4.0,-3.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-3.0,0.5
+-3.0,-3.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-2.0,0.5
+-2.0,-3.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-1.0000000000000004,0.5
+-1.0000000000000004,-3.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-8.881784197001252e-16,0.5
+-8.881784197001252e-16,-3.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.9999999999999991,0.5
+0.9999999999999991,-3.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="2.0,0.5
+2.0,-3.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="3.0,0.5
+3.0,-3.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-4.0" y="0.61125">-4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-3.0" y="0.61125">-3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-2.0" y="0.61125">-2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-1.0000000000000004" y="0.61125">-1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-8.881784197001252e-16" y="0.61125">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.9999999999999991" y="0.61125">1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="2.0" y="0.61125">2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="3.0" y="0.61125">3</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="-4.0,0.5425
+-4.0,0.5125"/><polyline points="-3.0,0.5425
+-3.0,0.5125"/><polyline points="-2.0,0.5425
+-2.0,0.5125"/><polyline points="-1.0000000000000004,0.5425
+-1.0000000000000004,0.5125"/><polyline points="-8.881784197001252e-16,0.5425
+-8.881784197001252e-16,0.5125"/><polyline points="0.9999999999999991,0.5425
+0.9999999999999991,0.5125"/><polyline points="2.0,0.5425
+2.0,0.5125"/><polyline points="3.0,0.5425
+3.0,0.5125"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="5.0000000000000044e-3" width="7.0" x="-4.0" y="0.51"/></g><g stroke-opacity="0.4" stroke="#33a02c" stroke-width="3.0e-2" fill="none"><polyline points="4.04565611708918e-2,-3.601595374466926e-2
+-0.1100728945645777,-8.800467303322723e-2
+-0.26113586760633956,-0.14459414816136595
+-0.4122755076427147,-0.20561323911489504
+-0.5630347325028198,-0.27087740966922236
+-0.7129576104816207,-0.34018928547073246
+-0.86159073918571,-0.4133392509437127
+-1.0084846167298291,-0.4901060832176406
+-1.1531950011373477,-0.5702576211576941
+-1.2952842538335116,-0.653551467475164
+-1.434322663168444,-0.7397357217944301
+-1.5698897439672481,-0.8285497424595359
+-1.701575509177041,-0.9197249347764557
+-1.8289817097651944,-1.0129855633072524
+-1.9517230391189981,-1.108049585759538
+-2.0694282983043744,-1.2046295059493537
+-2.181741518659628,-1.302433243257918
+-2.2883230383292306,-1.401165015952797
+-2.388850529481946,-1.5005262357021167
+-2.483019973106755,-1.6002164105766
+-2.5705465784385595,-1.6999340538085383
+-2.651165644233094,-1.7993775955593843
+-2.7246333592863703,-1.8982462949385748
+-2.790727539777661,-1.9962411495154204
+-2.849248301206157,-2.0930657995734716
+-2.9000186628891607,-2.1884274243726964
+-2.942885083193726,-2.282037627708951
+-2.977717923883013,-2.3736133100926025
+-3.0044118421731136,-2.4628775249086248
+-3.0228861093146513,-2.5495603159689506
+-3.0330848547356917,-2.6333995339241008
+-3.03497723500763,-2.7141416290650833
+-3.0285575271230334,-2.7915424181179436
+-3.0138451458033853,-2.865367822711979
+-2.990884584784353,-2.9353945772883305
+-2.9597452822561605,-3.001410904308069
+-2.9205214108660087,-3.0632171547177713
+-2.8733315929176246,-3.120626411735683
+-2.818318541629237,-3.173465056132457
+-2.755648629534904,-3.221573291296951
+-2.6855113853344603,-3.2648056264991254
+-2.608118920713702,-3.3030313168885796
+-2.523705288868271,-3.3361347588980252
+-2.4325257766711985,-3.364015839855938
+-2.3348561326247674,-3.386590240751052
+-2.2309917329315345,-3.403789691233081
+-2.1212466882065453,-3.4155621760784705
+-2.005952893532216,-3.421872092496791
+-1.88545902472878,-3.4227003578020323
+-1.7601294838757804,-3.4180444671231784
+-1.6303432972736283,-3.4079185009795303
+-1.4964929691780497,-3.392353082697875
+-1.3589832947739806,-3.3713952858002694
+-1.218230135978775,-3.3451084916425287
+-1.074659163776996,-3.3135721977339507
+-0.9287045708902486,-3.2768817773179677
+-0.7808077586752562,-3.2351481909408015
+-0.6314160022213207,-3.188497650880419
+-0.48098109768420816,-3.1370712394506235
+-0.3299579959472574,-3.081024482334628
+-0.17880342674185368,-3.0205268782384445
+-2.7974517388233977e-2,-2.955761386286542
+0.12207258966611256,-2.8869238727099917
+0.27088411632953857,-2.8142225185004706
+0.4180100211989899,-2.7378771898214787
+0.5630053605920864,-2.658118773080853
+0.7054316341625153,-2.5751884766754185
+0.8448581110292261,-2.4893371015195087
+0.9808631324089312,-2.4008242825634225
+1.113035386812407,-2.3099177035956777
+1.2409751539481517,-2.216892287703636
+1.3642955135714772,-2.1220293658408016
+1.4826235156232412,-2.025615826015184
+1.5956013081194023,-1.927943245671822
+1.7028872193804228,-1.8293070098933333
+1.8041567913275856,-1.730005418085267
+1.8991037607212888,-1.6303387818478412
+1.9874409853738237,-1.5306085167623338
+2.0689013125355578,-1.4311162308387781
+2.1432383868283083,-1.332162812381691
+2.2102273952825158,-1.2340475200323762
+2.269665747225061,-1.137067077739717
+2.3213736869615875,-1.0415147773964661
+2.3651948374004146,-0.9476795918548994
+2.4009966729740055,-0.8558453010042836
+2.428670920427761,-0.7662896335530697
+2.4481338862640616,-0.6792834271113214
+2.45932670985128,-0.5950898091134543
+2.4622155414323146,-0.5139634010583648
+2.456791644494296,-0.4361495484735435
+2.4430714221898757,-0.36188357893193035
+2.4210963677301978,-0.29139009036542696
+2.390932938899562,-0.22488227182741027
+2.35267235707132,-0.1625612587583971
+2.3064303313327565,-0.1046155247046936
+2.2523467085533317,-5.122031132962679e-2
+2.1905850504545326,-2.537098441131924e-3
+2.121332138960379,4.1286884361546816e-2
+2.0447974113245095,8.011910294513092e-2
+1.9612123267421877,0.11384211945700962
+1.8708296663627317,0.14235394748519598"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="3.0e-3" fill="#a6cee3"><rect height="2.9999999999999805e-2" width="3.0000000000000027e-2" x="-0.30148671851794784" y="-1.6242991486979668"/><rect height="3.0e-2" width="3.0e-2" x="-1.5000000000000888e-2" y="-1.5e-2"/><rect height="3.0e-2" width="3.0000000000000027e-2" x="1.985" y="-1.5e-2"/><rect height="3.000000000000025e-2" width="2.9999999999999805e-2" x="1.4305640890509286" y="-2.124299148697967"/><rect height="3.000000000000025e-2" width="3.000000000000025e-2" x="-2.3014867185179466" y="-3.356349956266845"/></g><g stroke-opacity="1.0" stroke="#e63305" stroke-width="5.0e-3" fill="none" stroke-linecap="round" stroke-dasharray="3.0e-2 1.0e-2"><polyline points="-0.2864867185179478,-1.6092991486979669
+1.4455640890509285,-2.109299148697967"/></g><g stroke-opacity="1.0" stroke="#e6cc05" stroke-width="5.0e-3" fill="none" stroke-linecap="round" stroke-dasharray="3.0e-2 1.0e-2"><polyline points="-0.2864867185179478,-1.6092991486979669
+-2.2864867185179465,-3.341349956266845"/></g><g stroke-opacity="1.0" stroke="#33e6cc" stroke-width="5.0e-3" fill="none" stroke-linecap="round" stroke-dasharray="3.0e-2 1.0e-2"><polyline points="-0.2864867185179478,-1.6092991486979669
+-8.881784197001252e-16,-0.0"/></g><g stroke-opacity="1.0" stroke="#3333e6" stroke-width="5.0e-3" fill="none" stroke-linecap="round" stroke-dasharray="3.0e-2 1.0e-2"><polyline points="-0.2864867185179478,-1.6092991486979669
+2.0,-0.0"/></g><g stroke-opacity="0.3" stroke="#e31a1c" stroke-width="4.0e-2" fill="none"><polyline points="0.0,-0.0
+-0.14100802543192303,-4.5733527702466525e-2
+-0.28243205242005986,-9.593812754463205e-2
+-0.4238676738717646,-0.15047023766722867
+-0.5649104495396009,-0.2091739215396644
+-0.7051570625327872,-0.2718813138661478
+-0.8442064726163507,-0.33841310060253527
+-0.9816610630001037,-0.4085790317112924
+-1.117127777338164,-0.4821784651883215
+-1.2502192436877082,-0.5590009408059863
+-1.3805548822129836,-0.638826781931708
+-1.5077619934670392,-0.7214277237011971
+-1.631476824139194,-0.8065675657500427
+-1.7513456072207232,-0.8940028476371534
+-1.8670255736143417,-0.9834835450286462
+-1.9781859322947688,-1.0747537846514228
+-2.0845088162175625,-1.1675525759719996
+-2.1856901912713713,-1.2616145575083242
+-2.2814407256744103,-1.3566707556404842
+-2.3714866173291016,-1.4524493537504446
+-2.4555703767690193,-1.548676469491446
+-2.533451563459283,-1.6450769379644319
+-2.604907473344915,-1.741375098561968
+-2.6697337756811006,-1.8372955832296727
+-2.7277450973243003,-1.9325641038910728
+-2.7787755528134204,-2.026908236784221
+-2.822679218725262,-2.120058201467252
+-2.859330550947795,-2.21174763226525
+-2.888624743678063,-2.3017143399524853
+-2.9104780291181473,-2.3897010614919383
+-2.924827917012201,-2.4754561956881993
+-2.9316333733395776,-2.5587345226501497
+-2.930874937653096,-2.639297905006052
+-2.9225547787268855,-2.7169159688659392
+-2.906696688354697,-2.7913667625840315
+-2.883346013316417,-2.862437391437458
+-2.852569525707316,-2.929924626406377
+-2.8144552320008405,-2.993635485314661
+-2.769112121390938,-3.053387784669377
+-2.716669854133534,-3.1090106606210415
+-2.657278390778367,-3.160345057554936
+-2.591107563351404,-3.2072441829163645
+-2.518346589714046,-3.249573926969246
+-2.4392035324878574,-3.287213246287724
+-2.3539047040920034,-3.3200545098842014
+-2.262694019594756,-3.348003806984017
+-2.1658322992295727,-3.37098121556669
+-2.0635965225702657,-3.3889210309058058
+-1.9562790364979419,-3.40177195345405
+-1.844186719224576,-3.409497235536108
+-1.7276401027637318,-3.4120747864299616
+-1.6069724563577363,-3.409497235536108
+-1.4825288334822875,-3.40177195345405
+-1.3546650851536293,-3.3889210309058058
+-1.2237468423597835,-3.37098121556669
+-1.0901484705255613,-3.348003806984018
+-0.9542519990011895,-3.3200545098842014
+-0.8164460286356174,-3.2872132462877244
+-0.6771246205584331,-3.249573926969247
+-0.5366861693478651,-3.2072441829163654
+-0.3955322638071732,-3.160345057554936
+-0.25406653860701267,-3.1090106606210424
+-0.11269352007756428,-3.0533877846693787
+2.8182530549051066e-2,-2.993635485314661
+0.16815877313829386,-2.9299246264063785
+0.3068349405890922,-2.8624373914374592
+0.4438144834119946,-2.7913667625840315
+0.5787057036767047,-2.71691596886594
+0.7111228750864056,-2.639297905006054
+0.8406873459759847,-2.5587345226501514
+0.9670286220800834,-2.4754561956882
+1.089785425974779,-2.389701061491939
+1.2086067301633854,-2.3017143399524853
+1.3231527608521843,-2.2117476322652503
+1.4330959695458354,-2.1200582014672533
+1.5381219696840782,-2.026908236784222
+1.637930435641385,-1.9325641038910741
+1.7322359615189278,-1.837295583229674
+1.820768877272985,-1.7413750985619685
+1.903276019846147,-1.6450769379644332
+1.979521457096177,-1.5486764694914479
+2.049287162452469,-1.4524493537504468
+2.112373638370859,-1.3566707556404856
+2.1686004868040376,-1.261614557508325
+2.217806925056248,-1.1675525759719996
+2.2598522455471945,-1.0747537846514246
+2.2946162181704315,-0.9834835450286482
+2.3219994340956687,-0.8940028476371548
+2.341923590031909,-0.8065675657500432
+2.3543317121385128,-0.7214277237011971
+2.3591883189439606,-0.6388267819317092
+2.3564795228063815,-0.5590009408059881
+2.346213069625776,-0.4821784651883224
+2.3284183166943304,-0.4085790317112937
+2.303146148748189,-0.33841310060253593
+2.270468832460711,-0.2718813138661489
+2.230479809793332,-0.20917392153966485
+2.1832934307948992,-0.15047023766722845
+2.129044626613604,-9.593812754463316e-2
+2.067888523656511,-4.5733527702467525e-2
+2.0,-4.440892098500626e-16"/></g><g stroke-opacity="1.0" stroke="#1f78b4" stroke-width="2.0e-3" fill="none"><polyline points="1.4455640890509285,-2.109299148697967
+1.3165652433729376,-2.217068882970519
+1.18123988396614,-2.3224400277654778
+1.0401220781998397,-2.4249967313138336
+0.8937687535828047,-2.524334249160382
+0.7427574998248208,-2.6200605415051785
+0.5876842893539953,-2.7117978204055206
+0.4291611252858436,-2.799184040732366
+0.2678136261265971,-2.8818743289970485
+0.10427855674277975,-2.959542344409389
+-6.0798684658820434e-2,-3.031881566795695
+-0.2267666136230062,-3.0986065062938555
+-0.39297023055769387,-3.1594538300513957
+-0.5587536057180484,-3.2141834014799437
+-0.7234624678615322,-3.2625792279646317
+-0.8864467863575878,-3.304450313288277
+-1.0470633365615631,-3.339631411406186
+-1.2046782383285253,-3.367983678596801
+-1.3586694576485985,-3.389395221414439
+-1.5084292615310217,-3.4037815382816046
+-1.6533666164486198,-3.411085852978104
+-1.7929095208771106,-3.4112793387108553
+-1.9265072627238031,-3.404361231880067
+-2.0536325927366317,-3.390358835092816
+-2.1737838053160745,-3.3693274094121364
+-2.2864867185179474,-3.341349956266845
+-2.3912965454329074,-3.306536889882823
+-2.487799649557175,-3.265025601528512
+-2.5756151772268465,-3.2169799172943425
+-2.6543965606733098,-3.1625894515460016
+-2.723832885767889,-3.1020688586031575
+-2.783650119057878,-3.035656985596927
+-2.833612189251375,-2.9636159298493663
+-2.8735219188828243,-2.8862300044950846
+-2.903221802482392,-2.803804616427189
+-2.9225946281780963,-2.716665060995804
+-2.9315639402775195,-2.625155238215943
+-2.9300943410034934,-2.5296362955512546
+-2.9181916301929567,-2.430485202629985
+-2.8959027824076466,-2.3280932635180664
+-2.863315761546967,-2.222864572420748
+-2.8205591736946607,-2.1152144189073745
+-2.7678017595693536,-2.0055676489531846
+-2.705251728582029,-1.8943569882663462
+-2.6331559371286026,-1.7820213345172697
+-2.551798914360506,-1.6690040252100253
+-2.461501739278119,-1.555751088031751
+-2.3626207735786346,-1.4427094805851444
+-2.2555462552592527,-1.3303253264509998
+-2.140700758526087,-1.2190421545422483
+-2.018537526086825,-1.1092991486979673
+-1.8895386804088332,-1.001529414425415
+-1.7542133210020365,-0.8961582696304561
+-1.6130955152357354,-0.7936015660821002
+-1.4667421906187004,-0.6942640482355523
+-1.315730936860716,-0.5985377558907549
+-1.1606577263898914,-0.5068004769904132
+-1.0021345623217401,-0.41941425666356935
+-0.8407870631624927,-0.3367239683988853
+-0.6772519937786758,-0.25905595298654527
+-0.5121747523770757,-0.18671673060023886
+-0.34620682341288855,-0.1199917911020788
+-0.180003206478204,-5.9144467344538376e-2
+-1.4219831317847209e-2,-4.4148959159905354e-3
+0.1504890308256357,4.398093056869845e-2
+0.3134733493216917,8.585201589234304e-2
+0.47408989952566927,0.1210331140102518
+0.6317048012926296,0.14938538120086653
+0.7856960206127033,0.1707969240185056
+0.9354558244951265,0.18518324088567084
+1.0803931794127237,0.1924875555821708
+1.2199360838412145,0.19268104131492203
+1.353533825687908,0.1857629344841331
+1.4806591557007351,0.17176053769688227
+1.6008103682801789,0.15072911201620215
+1.7135132814820508,0.12275165887091055
+1.8183231083970108,8.793859248688918e-2
+1.9148262125212794,4.642730413257801e-2
+2.002641740190951,-1.6183801015914323e-3
+2.081423123637414,-5.600884584993293e-2
+2.1508594487319943,-0.11652943879277633
+2.2106766820219814,-0.1829413117990064
+2.2606387522154794,-0.2549823675465661
+2.3005484818469286,-0.33236829290084946
+2.330248365446497,-0.414793680968745
+2.3496211911422016,-0.5019332364001298
+2.358590503241624,-0.5934430591799907
+2.3571209039675978,-0.6889620018446793
+2.345218193157062,-0.788113094765949
+2.322929345371752,-0.8905050338778678
+2.2903423245110712,-0.995733724975186
+2.247585736658765,-1.1033838784885588
+2.194828322533459,-1.2130306484427487
+2.1322782915461342,-1.324241309129587
+2.060182500092707,-1.4365769628786644
+1.9788254773246106,-1.5495942721859084
+1.8885283022422215,-1.662847209364183
+1.789647336542738,-1.7758888168107894
+1.682572818223357,-1.888272970944933
+1.5677273214901897,-1.9995561428536868
+1.4455640890509303,-2.1092991486979664"/></g><g fill-opacity="1.0" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-8.881784197001252e-16" y="-2.5">1.000,2.000</text></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="3.0e-3" fill="#a6cee3"><circle cy="-2.842138483816435" r="2.5e-2" cx="0.34684589351583117"/><circle cy="-2.9246345332233945" r="2.5e-2" cx="-2.8553171532750703"/></g><g></g></svg>
diff --git a/other/quad.svg b/other/quad.svg
new file mode 100644
--- /dev/null
+++ b/other/quad.svg
@@ -0,0 +1,145 @@
+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.6822731098534431 -0.5833322902653921 1.2810462197068864 1.1557733247481508" width="332.516642911628" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="0.8908765334212333" width="0.9888268069636451" x="-0.456553697110202" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.456553697110202,0.3908765334212333
+0.5322731098534431,0.3908765334212333"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.456553697110202,0.30178888007911
+0.5322731098534431,0.30178888007911"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.456553697110202,0.2127012267369866
+0.5322731098534431,0.2127012267369866"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.456553697110202,0.12361357339486329
+0.5322731098534431,0.12361357339486329"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.456553697110202,3.452592005273991e-2
+0.5322731098534431,3.452592005273991e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.456553697110202,-5.4561733289383296e-2
+0.5322731098534431,-5.4561733289383296e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.456553697110202,-0.14364938663150673
+0.5322731098534431,-0.14364938663150673"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.456553697110202,-0.23273703997363004
+0.5322731098534431,-0.23273703997363004"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.456553697110202,-0.32182469331575336
+0.5322731098534431,-0.32182469331575336"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.456553697110202,-0.41091234665787657
+0.5322731098534431,-0.41091234665787657"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.456553697110202,-0.5
+0.5322731098534431,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5322731098534431" y="0.4037942431558411">-1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5322731098534431" y="0.31470658981371785">-0.8</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5322731098534431" y="0.22561893647159448">-0.6</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5322731098534431" y="0.13653128312947116">-0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5322731098534431" y="4.7443629787347785e-2">-0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5322731098534431" y="-4.164402355477548e-2">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5322731098534431" y="-0.1307316768968989">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5322731098534431" y="-0.21981933023902223">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5322731098534431" y="-0.30890698358114543">0.6</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5322731098534431" y="-0.39799463692326886">0.8</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5322731098534431" y="-0.48708229026539207">1</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><g transform="rotate(-90.0, -0.5000620766166024, 0.3908765334212333)"><polyline points="-0.5000620766166024,0.4058765334212333
+-0.5000620766166024,0.3758765334212333"/></g><g transform="rotate(-90.0, -0.5000620766166024, 0.30178888007911)"><polyline points="-0.5000620766166024,0.31678888007911
+-0.5000620766166024,0.28678888007910996"/></g><g transform="rotate(-90.0, -0.5000620766166024, 0.2127012267369866)"><polyline points="-0.5000620766166024,0.22770122673698662
+-0.5000620766166024,0.1977012267369866"/></g><g transform="rotate(-90.0, -0.5000620766166024, 0.12361357339486329)"><polyline points="-0.5000620766166024,0.1386135733948633
+-0.5000620766166024,0.10861357339486329"/></g><g transform="rotate(-90.0, -0.5000620766166024, 3.452592005273991e-2)"><polyline points="-0.5000620766166024,4.952592005273991e-2
+-0.5000620766166024,1.9525920052739912e-2"/></g><g transform="rotate(-90.0, -0.5000620766166024, -5.4561733289383296e-2)"><polyline points="-0.5000620766166024,-3.95617332893833e-2
+-0.5000620766166024,-6.95617332893833e-2"/></g><g transform="rotate(-90.0, -0.5000620766166024, -0.14364938663150673)"><polyline points="-0.5000620766166024,-0.1286493866315067
+-0.5000620766166024,-0.15864938663150674"/></g><g transform="rotate(-90.0, -0.5000620766166024, -0.23273703997363004)"><polyline points="-0.5000620766166024,-0.21773703997363003
+-0.5000620766166024,-0.24773703997363006"/></g><g transform="rotate(-90.0, -0.5000620766166024, -0.32182469331575336)"><polyline points="-0.5000620766166024,-0.30682469331575335
+-0.5000620766166024,-0.3368246933157534"/></g><g transform="rotate(-90.0, -0.5000620766166024, -0.41091234665787657)"><polyline points="-0.5000620766166024,-0.39591234665787656
+-0.5000620766166024,-0.4259123466578766"/></g><g transform="rotate(-90.0, -0.5000620766166024, -0.5)"><polyline points="-0.5000620766166024,-0.485
+-0.5000620766166024,-0.515"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="0.8908765334212333" width="4.944134034818304e-3" x="-0.48770174152955686" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.456553697110202,0.3908765334212333
+-0.456553697110202,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.3576710164138376,0.3908765334212333
+-0.3576710164138376,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.258788335717473,0.3908765334212333
+-0.258788335717473,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.15990565502110848,0.3908765334212333
+-0.15990565502110848,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-6.1022974324743906e-2,0.3908765334212333
+-6.1022974324743906e-2,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="3.7859706371620616e-2,0.3908765334212333
+3.7859706371620616e-2,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.13674238706798525,0.3908765334212333
+0.13674238706798525,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.23562506776434966,0.3908765334212333
+0.23562506776434966,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.3345077484607143,0.3908765334212333
+0.3345077484607143,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.4333904291570787,0.3908765334212333
+0.4333904291570787,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.5322731098534431,0.3908765334212333
+0.5322731098534431,-0.5"/></g><g fill-opacity="1.0" font-size="4.274482758620691e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.456553697110202" y="0.5">0</text></g><g fill-opacity="1.0" font-size="4.274482758620691e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.3576710164138376" y="0.5">0.2</text></g><g fill-opacity="1.0" font-size="4.274482758620691e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.258788335717473" y="0.5">0.4</text></g><g fill-opacity="1.0" font-size="4.274482758620691e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.15990565502110848" y="0.5">0.6</text></g><g fill-opacity="1.0" font-size="4.274482758620691e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-6.1022974324743906e-2" y="0.5">0.8</text></g><g fill-opacity="1.0" font-size="4.274482758620691e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="3.7859706371620616e-2" y="0.5">1</text></g><g fill-opacity="1.0" font-size="4.274482758620691e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.13674238706798525" y="0.5">1.2</text></g><g fill-opacity="1.0" font-size="4.274482758620691e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.23562506776434966" y="0.5">1.4</text></g><g fill-opacity="1.0" font-size="4.274482758620691e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.3345077484607143" y="0.5">1.6</text></g><g fill-opacity="1.0" font-size="4.274482758620691e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.4333904291570787" y="0.5">1.8</text></g><g fill-opacity="1.0" font-size="4.274482758620691e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.5322731098534431" y="0.5">2</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="-0.456553697110202,0.44507510089176744
+-0.456553697110202,0.4150751008917674"/><polyline points="-0.3576710164138376,0.44507510089176744
+-0.3576710164138376,0.4150751008917674"/><polyline points="-0.258788335717473,0.44507510089176744
+-0.258788335717473,0.4150751008917674"/><polyline points="-0.15990565502110848,0.44507510089176744
+-0.15990565502110848,0.4150751008917674"/><polyline points="-6.1022974324743906e-2,0.44507510089176744
+-6.1022974324743906e-2,0.4150751008917674"/><polyline points="3.7859706371620616e-2,0.44507510089176744
+3.7859706371620616e-2,0.4150751008917674"/><polyline points="0.13674238706798525,0.44507510089176744
+0.13674238706798525,0.4150751008917674"/><polyline points="0.23562506776434966,0.44507510089176744
+0.23562506776434966,0.4150751008917674"/><polyline points="0.3345077484607143,0.44507510089176744
+0.3345077484607143,0.4150751008917674"/><polyline points="0.4333904291570787,0.44507510089176744
+0.4333904291570787,0.4150751008917674"/><polyline points="0.5322731098534431,0.44507510089176744
+0.5322731098534431,0.4150751008917674"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.454382667106238e-3" width="0.9888268069636451" x="-0.456553697110202" y="0.4144847615568959"/></g><g stroke-opacity="0.0" fill-opacity="0.1" stroke="#000000" stroke-width="1.0e-2" fill="#e31a1c"><path d="M -0.4566,-0.0546 Q 0.5323,0.3909 0.0379,-0.5"/></g><g stroke-opacity="1.0" stroke="#1f78b4" stroke-width="2.0e-3" fill="none"><polyline points="-0.456553697110202,-5.4561733289383296e-2
+-0.43692548499197364,-4.578659943518415e-2
+-0.4175939209158344,-3.727872854101144e-2
+-0.3985590048817843,-2.903812060686506e-2
+-0.3798207368898232,-2.1064775632745003e-2
+-0.3613791169399512,-1.3358693618651274e-2
+-0.3432341450321683,-5.919874564583982e-3
+-0.3253858211664745,1.2516815294569272e-3
+-0.3078341453428698,8.155974663471566e-3
+-0.2905791175613541,1.4793004837459656e-2
+-0.2736207378219277,2.1162772051421475e-2
+-0.2569590061245902,2.726527630535691e-2
+-0.24059392246934191,3.3100517599265966e-2
+-0.22452548685618268,3.866849593314875e-2
+-0.20875369928511256,4.3969211307005096e-2
+-0.1932785597561315,4.9002663720835116e-2
+-0.17810006826923963,5.376885317463864e-2
+-0.1632182248244367,5.82677796684159e-2
+-0.1486330294217229,6.2499443202166716e-2
+-0.13434448206109822,6.646384377589126e-2
+-0.12035258274256261,7.016098138958932e-2
+-0.10665733146611628,7.35908560432611e-2
+-9.325872823175885e-2,7.675346773690639e-2
+-8.015677303949048e-2,7.964881647052546e-2
+-6.735146588931129e-2,8.22769022441181e-2
+-5.484280678122122e-2,8.463772505768435e-2
+-4.263079571522016e-2,8.673128491122428e-2
+-3.0715432691308275e-2,8.855758180473772e-2
+-1.909671770948529e-2,9.011661573822494e-2
+-7.774650769751701e-3,9.140838671168566e-2
+3.2507681278929335e-3,9.243289472512012e-2
+1.3979538983448392e-2,9.319013977852814e-2
+2.4411661796914896e-2,9.368012187190988e-2
+3.454713656829245e-2,9.390284100526514e-2
+4.438596329758049e-2,9.385829717859406e-2
+5.39281419847798e-2,9.354649039189666e-2
+6.317367262988982e-2,9.296742064517283e-2
+7.212255523291089e-2,9.212108793842272e-2
+8.077478979384267e-2,9.100749227164617e-2
+8.91303763126855e-2,8.962663364484325e-2
+9.718931478943926e-2,8.797851205801394e-2
+0.10495160522410385,8.60631275111583e-2
+0.11241724761667937,8.388048000427634e-2
+0.11958624196716572,8.143056953736794e-2
+0.12645858827556322,7.871339611043321e-2
+0.13303428654187144,7.572895972347199e-2
+0.1393133367660906,7.247726037648455e-2
+0.14529573894822057,6.895829806947057e-2
+0.15098149308826148,6.517207280243037e-2
+0.15637059918621332,6.1118584575363843e-2
+0.1614630572420761,5.679783338827088e-2
+0.16625886725584993,5.220981924115148e-2
+0.17075802922753436,4.7354542134005695e-2
+0.17496054315712983,4.2232002066833696e-2
+0.17886640904463647,3.6842199039635204e-2
+0.1824756268900536,3.1185133052410385e-2
+0.18578819669338187,2.5260804105159185e-2
+0.18880411845462086,1.9069212197881658e-2
+0.191523392173771,1.2610357330577637e-2
+0.193946017850832,5.884239503247346e-3
+0.19607199548580367,-1.1091412841094384e-3
+0.19790132507868663,-8.369785031492327e-3
+0.1994340066294802,-1.5897691738901876e-2
+0.20067004013818457,-2.369286140633764e-2
+0.2016094256048,-3.175529403379984e-2
+0.20225216302932658,-4.008498962128826e-2
+0.20259825241176377,-4.8681948168803224e-2
+0.2026476937521119,-5.7546169676344516e-2
+0.20240048705037095,-6.667765414391214e-2
+0.20185663230654105,-7.607640157150619e-2
+0.2010161295206221,-8.574241195912657e-2
+0.19987897869261384,-9.567568530677317e-2
+0.19844517982251653,-0.10587622161444632
+0.19671473291033015,-0.1163440208821459
+0.1946876379560547,-0.1270790831098716
+0.19236389495968997,-0.13808140829762394
+0.1897435039212364,-0.14935099644540262
+0.18682646484069365,-0.16088784755320762
+0.18361277771806173,-0.17269196162103895
+0.18010244255334096,-0.1847633386488966
+0.1762954593465309,-0.1971019786367808
+0.17219182809763167,-0.20970788158469122
+0.1677915488066435,-0.22258104749262797
+0.16309462147356601,-0.23572147636059126
+0.1581010460983997,-0.24912916818858055
+0.15281082268114432,-0.2628041229765965
+0.14722395122179976,-0.2767463407246389
+0.14134043172036603,-0.2909558214327075
+0.13516026417684335,-0.3054325651008025
+0.12868344859123138,-0.320176571728924
+0.12190998496353034,-0.3351878413170718
+0.11483987329374024,-0.35046637386524604
+0.10747311358186129,-0.3660121693734465
+9.980970582789273e-2,-0.3818252278416734
+9.184965003183554e-2,-0.39790554926992683
+8.359294619368907e-2,-0.4142531336582065
+7.503959431345353e-2,-0.430867981006512
+6.618959439112904e-2,-0.44775009131484467
+5.7042946426715146e-2,-0.4648994645832034
+4.7599650420212414e-2,-0.4823161008115885
+3.7859706371620616e-2,-0.5"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="3.0e-3" fill="#a6cee3"><rect height="3.0e-2" width="3.0000000000000027e-2" x="-0.471553697110202" y="-6.95617332893833e-2"/><rect height="3.0000000000000027e-2" width="3.0e-2" x="2.2859706371620617e-2" y="-0.515"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.5172731098534431" y="0.3758765334212333"/></g><g stroke-opacity="1.0" fill-opacity="0.1" stroke="#808080" stroke-width="2.0e-3" fill="#6666cc"><rect height="0.5939176889474889" width="0.6592178713090968" x="-0.456553697110202" y="-0.5"/></g><g></g></svg>
diff --git a/other/rect.svg b/other/rect.svg
new file mode 100644
--- /dev/null
+++ b/other/rect.svg
@@ -0,0 +1,23 @@
+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.795 -0.5225 1.5775000000000001 1.06875" width="442.8070175438596" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="0.8998875140607425" width="1.5" x="-0.75" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.75,0.39988751406074247
+-0.75,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6,0.39988751406074247
+-0.6,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.44999999999999996,0.39988751406074247
+-0.44999999999999996,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.29999999999999993,0.39988751406074247
+-0.29999999999999993,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.1499999999999999,0.39988751406074247
+-0.1499999999999999,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.0,0.39988751406074247
+0.0,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.15000000000000013,0.39988751406074247
+0.15000000000000013,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.2999999999999998,0.39988751406074247
+0.2999999999999998,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.4500000000000002,0.39988751406074247
+0.4500000000000002,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.6000000000000001,0.39988751406074247
+0.6000000000000001,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.75,0.39988751406074247
+0.75,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.75" y="0.5">-5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.6" y="0.5">-4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.44999999999999996" y="0.5">-3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.29999999999999993" y="0.5">-2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.1499999999999999" y="0.5">-1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.0" y="0.5">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.15000000000000013" y="0.5">1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.2999999999999998" y="0.5">2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.4500000000000002" y="0.5">3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.6000000000000001" y="0.5">4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.75" y="0.5">5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="-0.75,0.4396344206974129
+-0.75,0.40963442069741285"/><polyline points="-0.6,0.4396344206974129
+-0.6,0.40963442069741285"/><polyline points="-0.44999999999999996,0.4396344206974129
+-0.44999999999999996,0.40963442069741285"/><polyline points="-0.29999999999999993,0.4396344206974129
+-0.29999999999999993,0.40963442069741285"/><polyline points="-0.1499999999999999,0.4396344206974129
+-0.1499999999999999,0.40963442069741285"/><polyline points="0.0,0.4396344206974129
+0.0,0.40963442069741285"/><polyline points="0.15000000000000013,0.4396344206974129
+0.15000000000000013,0.40963442069741285"/><polyline points="0.2999999999999998,0.4396344206974129
+0.2999999999999998,0.40963442069741285"/><polyline points="0.4500000000000002,0.4396344206974129
+0.4500000000000002,0.40963442069741285"/><polyline points="0.6000000000000001,0.4396344206974129
+0.6000000000000001,0.40963442069741285"/><polyline points="0.75,0.4396344206974129
+0.75,0.40963442069741285"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.499437570303799e-3" width="1.5" x="-0.75" y="0.40888638920134984"/></g><g stroke-opacity="0.0" fill-opacity="0.4" stroke="#000000" stroke-width="0.0" fill="#a6cee3"><rect height="5.529099980472463e-6" width="2.9999999999999916e-2" x="-0.75" y="0.399881984960762"/><rect height="1.4440330920295619e-5" width="3.0000000000000027e-2" x="-0.72" y="0.39987307372982217"/><rect height="3.623498360572075e-5" width="2.9999999999999916e-2" x="-0.69" y="0.39985127907713675"/><rect height="8.735891133720974e-5" width="2.9999999999999916e-2" x="-0.66" y="0.39980015514940526"/><rect height="2.0235529734885516e-4" width="2.9999999999999916e-2" x="-0.63" y="0.3996851587633936"/><rect height="4.5034999634713246e-4" width="2.9999999999999916e-2" x="-0.6" y="0.39943716406439533"/><rect height="9.629726880897027e-4" width="3.0000000000000138e-2" x="-0.5700000000000001" y="0.39892454137265276"/><rect height="1.9783630713544054e-3" width="3.0000000000000027e-2" x="-0.5399999999999999" y="0.39790915098938806"/><rect height="3.9050468128133953e-3" width="3.0000000000000138e-2" x="-0.51" y="0.39598246724792907"/><rect height="7.405846613291356e-3" width="3.0000000000000027e-2" x="-0.48" y="0.3924816674474511"/><rect height="1.3494332346886628e-2" width="3.0000000000000027e-2" x="-0.44999999999999996" y="0.38639318171385584"/><rect height="2.3624156549550468e-2" width="3.0000000000000027e-2" x="-0.41999999999999993" y="0.376263357511192"/><rect height="3.9736484517159e-2" width="3.0000000000000027e-2" x="-0.3899999999999999" y="0.36015102954358347"/><rect height="6.421711546131487e-2" width="3.0000000000000027e-2" x="-0.36" y="0.3356703985994276"/><rect height="9.971037872875954e-2" width="3.0000000000000027e-2" x="-0.32999999999999996" y="0.3001771353319829"/><rect height="0.14875040559872815" width="3.0000000000000027e-2" x="-0.29999999999999993" y="0.2511371084620143"/><rect height="0.21320833177243814" width="3.0000000000000027e-2" x="-0.2699999999999999" y="0.18667918228830432"/><rect height="0.29361511327157686" width="3.0000000000000138e-2" x="-0.23999999999999988" y="0.10627240078916561"/><rect height="0.3884909097224566" width="3.0000000000000027e-2" x="-0.20999999999999996" y="1.1396604338285876e-2"/><rect height="0.4938687388922626" width="3.0000000000000027e-2" x="-0.17999999999999994" y="-9.398122483152016e-2"/><rect height="0.6032126398520938" width="3.0000000000000027e-2" x="-0.1499999999999999" y="-0.20332512579135142"/><rect height="0.7078765903861" width="3.0000000000000027e-2" x="-0.11999999999999988" y="-0.30798907632535755"/><rect height="0.7981286269670711" width="3.0000000000000027e-2" x="-8.999999999999986e-2" y="-0.3982411129063287"/><rect height="0.864602419934599" width="3.0000000000000027e-2" x="-5.999999999999983e-2" y="-0.46471490587385655"/><rect height="0.8998875140607425" width="3.0000000000000027e-2" x="-2.9999999999999805e-2" y="-0.5"/><rect height="0.8998875140607425" width="3.0000000000000027e-2" x="0.0" y="-0.5"/><rect height="0.864602419934599" width="3.0000000000000027e-2" x="3.0000000000000027e-2" y="-0.46471490587385655"/><rect height="0.7981286269670707" width="3.0000000000000027e-2" x="6.000000000000005e-2" y="-0.39824111290632824"/><rect height="0.7078765903860995" width="3.0000000000000027e-2" x="9.000000000000008e-2" y="-0.3079890763253571"/><rect height="0.6032126398520934" width="3.0000000000000027e-2" x="0.1200000000000001" y="-0.20332512579135098"/><rect height="0.4938687388922623" width="3.0000000000000027e-2" x="0.15000000000000013" y="-9.398122483151983e-2"/><rect height="0.38849090972245637" width="3.0000000000000027e-2" x="0.18000000000000016" y="1.1396604338286098e-2"/><rect height="0.29361511327157647" width="3.0000000000000027e-2" x="0.2100000000000002" y="0.106272400789166"/><rect height="0.2132083317724378" width="3.0000000000000027e-2" x="0.2400000000000002" y="0.18667918228830466"/><rect height="0.14875040559872788" width="3.0000000000000027e-2" x="0.27000000000000024" y="0.2511371084620146"/><rect height="9.971037872875943e-2" width="3.000000000000025e-2" x="0.2999999999999998" y="0.30017713533198304"/><rect height="6.421711546131476e-2" width="2.9999999999999805e-2" x="0.33000000000000007" y="0.3356703985994277"/><rect height="3.973648451715889e-2" width="3.000000000000025e-2" x="0.3599999999999999" y="0.3601510295435836"/><rect height="2.3624156549550468e-2" width="2.9999999999999805e-2" x="0.3900000000000001" y="0.376263357511192"/><rect height="1.3494332346886517e-2" width="3.000000000000025e-2" x="0.41999999999999993" y="0.38639318171385595"/><rect height="7.405846613291356e-3" width="2.9999999999999805e-2" x="0.4500000000000002" y="0.3924816674474511"/><rect height="3.9050468128133953e-3" width="3.000000000000025e-2" x="0.4800000000000002" y="0.39598246724792907"/><rect height="1.9783630713544054e-3" width="2.9999999999999805e-2" x="0.5100000000000002" y="0.39790915098938806"/><rect height="9.629726880897027e-4" width="3.000000000000025e-2" x="0.54" y="0.39892454137265276"/><rect height="4.5034999634713246e-4" width="2.9999999999999805e-2" x="0.5700000000000003" y="0.39943716406439533"/><rect height="2.0235529734885516e-4" width="2.9999999999999805e-2" x="0.6000000000000001" y="0.3996851587633936"/><rect height="8.735891133720974e-5" width="2.9999999999999805e-2" x="0.6300000000000003" y="0.39980015514940526"/><rect height="3.623498360572075e-5" width="2.9999999999999805e-2" x="0.6600000000000001" y="0.39985127907713675"/><rect height="1.4440330920295619e-5" width="2.9999999999999805e-2" x="0.6900000000000004" y="0.39987307372982217"/><rect height="5.529099980472463e-6" width="2.9999999999999805e-2" x="0.7200000000000002" y="0.399881984960762"/></g><g stroke-opacity="0.0" fill-opacity="0.4" stroke="#000000" stroke-width="0.0" fill="#fb9a99"><rect height="2.2485543476967518e-2" width="2.9999999999999916e-2" x="-0.75" y="0.37740197058377495"/><rect height="2.8584728039609875e-2" width="3.0000000000000027e-2" x="-0.72" y="0.3713027860211326"/><rect height="3.5976738994484336e-2" width="2.9999999999999916e-2" x="-0.69" y="0.36391077506625813"/><rect height="4.482977730344262e-2" width="2.9999999999999916e-2" x="-0.66" y="0.35505773675729985"/><rect height="5.5305512692003955e-2" width="2.9999999999999916e-2" x="-0.63" y="0.3445820013687385"/><rect height="6.755030574347592e-2" width="2.9999999999999916e-2" x="-0.6" y="0.33233720831726654"/><rect height="8.168518004192254e-2" width="3.0000000000000138e-2" x="-0.5700000000000001" y="0.3182023340188199"/><rect height="9.779491585592087e-2" width="3.0000000000000027e-2" x="-0.5399999999999999" y="0.3020925982048216"/><rect height="0.11591678819849" width="3.0000000000000138e-2" x="-0.51" y="0.28397072586225247"/><rect height="0.13602961108138306" width="3.0000000000000027e-2" x="-0.48" y="0.2638579029793594"/><rect height="0.1580438601793615" width="3.0000000000000027e-2" x="-0.44999999999999996" y="0.24184365388138096"/><rect height="0.18179371143457468" width="3.0000000000000027e-2" x="-0.41999999999999993" y="0.2180938026261678"/><rect height="0.2070318384916195" width="3.0000000000000027e-2" x="-0.3899999999999999" y="0.19285567556912298"/><rect height="0.23342774607599076" width="3.0000000000000027e-2" x="-0.36" y="0.1664597679847517"/><rect height="0.26057027398127036" width="3.0000000000000027e-2" x="-0.32999999999999996" y="0.1393172400794721"/><rect height="0.2879746889191036" width="3.0000000000000027e-2" x="-0.29999999999999993" y="0.11191282514163886"/><rect height="0.31509449897329095" width="3.0000000000000027e-2" x="-0.2699999999999999" y="8.479301508745152e-2"/><rect height="0.34133779583328655" width="3.0000000000000138e-2" x="-0.23999999999999988" y="5.8549718227455916e-2"/><rect height="0.36608757860248126" width="3.0000000000000027e-2" x="-0.20999999999999996" y="3.379993545826121e-2"/><rect height="0.38872517019641156" width="3.0000000000000027e-2" x="-0.17999999999999994" y="1.1162343864330904e-2"/><rect height="0.408655535861338" width="3.0000000000000027e-2" x="-0.1499999999999999" y="-8.768021800595549e-3"/><rect height="0.42533308465784464" width="3.0000000000000027e-2" x="-0.11999999999999988" y="-2.5445570597102174e-2"/><rect height="0.4382864055261109" width="3.0000000000000027e-2" x="-8.999999999999986e-2" y="-3.839889146536846e-2"/><rect height="0.44714037823324854" width="3.0000000000000027e-2" x="-5.999999999999983e-2" y="-4.725286417250607e-2"/><rect height="0.45163421374457086" width="3.0000000000000027e-2" x="-2.9999999999999805e-2" y="-5.174669968382839e-2"/><rect height="0.45163421374457086" width="3.0000000000000027e-2" x="0.0" y="-5.174669968382839e-2"/><rect height="0.44714037823324854" width="3.0000000000000027e-2" x="3.0000000000000027e-2" y="-4.725286417250607e-2"/><rect height="0.4382864055261109" width="3.0000000000000027e-2" x="6.000000000000005e-2" y="-3.839889146536846e-2"/><rect height="0.42533308465784453" width="3.0000000000000027e-2" x="9.000000000000008e-2" y="-2.5445570597102063e-2"/><rect height="0.408655535861338" width="3.0000000000000027e-2" x="0.1200000000000001" y="-8.768021800595549e-3"/><rect height="0.3887251701964115" width="3.0000000000000027e-2" x="0.15000000000000013" y="1.116234386433096e-2"/><rect height="0.36608757860248126" width="3.0000000000000027e-2" x="0.18000000000000016" y="3.379993545826121e-2"/><rect height="0.34133779583328644" width="3.0000000000000027e-2" x="0.2100000000000002" y="5.854971822745603e-2"/><rect height="0.31509449897329084" width="3.0000000000000027e-2" x="0.2400000000000002" y="8.479301508745163e-2"/><rect height="0.28797468891910344" width="3.0000000000000027e-2" x="0.27000000000000024" y="0.11191282514163903"/><rect height="0.2605702739812703" width="3.000000000000025e-2" x="0.2999999999999998" y="0.13931724007947216"/><rect height="0.2334277460759907" width="2.9999999999999805e-2" x="0.33000000000000007" y="0.16645976798475176"/><rect height="0.20703183849161944" width="3.000000000000025e-2" x="0.3599999999999999" y="0.19285567556912303"/><rect height="0.18179371143457462" width="2.9999999999999805e-2" x="0.3900000000000001" y="0.21809380262616784"/><rect height="0.1580438601793615" width="3.000000000000025e-2" x="0.41999999999999993" y="0.24184365388138096"/><rect height="0.13602961108138306" width="2.9999999999999805e-2" x="0.4500000000000002" y="0.2638579029793594"/><rect height="0.11591678819848977" width="3.000000000000025e-2" x="0.4800000000000002" y="0.2839707258622527"/><rect height="9.779491585592087e-2" width="2.9999999999999805e-2" x="0.5100000000000002" y="0.3020925982048216"/><rect height="8.168518004192254e-2" width="3.000000000000025e-2" x="0.54" y="0.3182023340188199"/><rect height="6.755030574347581e-2" width="2.9999999999999805e-2" x="0.5700000000000003" y="0.33233720831726665"/><rect height="5.530551269200401e-2" width="2.9999999999999805e-2" x="0.6000000000000001" y="0.34458200136873846"/><rect height="4.482977730344262e-2" width="2.9999999999999805e-2" x="0.6300000000000003" y="0.35505773675729985"/><rect height="3.5976738994484336e-2" width="2.9999999999999805e-2" x="0.6600000000000001" y="0.36391077506625813"/><rect height="2.858472803960982e-2" width="2.9999999999999805e-2" x="0.6900000000000004" y="0.37130278602113265"/><rect height="2.2485543476967518e-2" width="2.9999999999999805e-2" x="0.7200000000000002" y="0.37740197058377495"/></g><g></g></svg>
diff --git a/other/surface.svg b/other/surface.svg
new file mode 100644
--- /dev/null
+++ b/other/surface.svg
@@ -0,0 +1,4 @@
+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.77 -0.52 1.5936139630390147 1.04" width="459.6963354920235" xmlns:xlink="http://www.w3.org/1999/xlink"><style type="text/css">* { shape-rendering: crispEdges; }</style><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6cee3"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99c6de"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8cbdda"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fb5d5"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72add1"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65a5cc"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599dc8"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d95c4"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#418dc0"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3586bc"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#297eb8"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2177b2"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#326fa6"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#426799"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52608d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#615881"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#715175"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#804a69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f425d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d3b52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab3547"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba2e3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c72731"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d52127"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e21a1d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e02623"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd332a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da4031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d74c38"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d4583f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d16445"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce6f4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb7a52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88558"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c6905e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39a64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a569"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beaf6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb874"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c27a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cb7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d484"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9db84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d880"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd67c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd379"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d175"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c767"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc462"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc462"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c767"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96c4de"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89bcd9"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cb3d4"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fabd0"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63a3cc"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569bc7"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a94c3"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3e8cbf"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3284bb"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#277db7"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2575b0"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#356da3"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#456696"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#555e8a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65577e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#744f72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#834866"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92415b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a13a4f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af3344"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd2c39"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb262f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d91f24"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e21d1e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df2a25"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc372c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d94333"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d6503a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d35c41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06747"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd734e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7e54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c7895a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59460"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29e66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a86c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb271"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbc76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c57c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d786"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1df8a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7d982"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fce70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab449"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab449"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb449"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b851"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fce70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d073"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87bad8"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ab2d4"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6daacf"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61a2cb"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549ac7"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4892c2"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3c8abe"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3083ba"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#247bb6"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2874ad"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#386ca0"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#496494"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#585c87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68557b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#774e6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#874664"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#953f58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4384d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b23142"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c12b37"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce242c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc1d22"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e1201f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de2d27"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db3a2e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d84735"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d5533c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d25f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf6b49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc7650"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c98256"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78d5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49762"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a268"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfac6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb673"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babf78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c97e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d283"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3db88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afde88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aadb84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d880"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd67c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd379"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d175"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcd6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c766"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c15e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb449"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb449"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb64c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcc6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d175"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78b1d3"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ba9cf"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fa1ca"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5299c6"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4691c2"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3a89bd"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2e82b9"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#227ab5"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2b72ab"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3b6a9e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b6392"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b5b85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b5479"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a4c6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a4561"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#983e56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7374a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5303f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c42934"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d1222a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df1c1f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e12321"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd3029"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da3d30"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d74a37"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d4563e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d16244"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce6e4b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb7a51"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88558"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c6905e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39b64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a56a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beaf6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbb975"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c37a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cc80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d585"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2de8a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addc86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fce70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87c96a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c767"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb449"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b248"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b246"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b246"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab449"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac361"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec563"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93cf73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6aa8ce"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5da0ca"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5198c5"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4490c1"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3888bd"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2c81b9"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2179b5"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2d71a9"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3e699c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e6190"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e5a83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e5277"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d4b6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c445f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b3c54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa3548"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b82f3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c62832"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d42128"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e21b1d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e02623"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd332a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da4031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d64d38"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d3593f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06546"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd714d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb7c53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88859"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c5935f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29e65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a86b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb271"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbc77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c67c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cf81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d886"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de89"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abdb85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d981"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd479"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d176"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcd6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89ca6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc462"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b043"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b043"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b043"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b246"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb449"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb64c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d378"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9fc9"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f97c5"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#438fc1"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3787bc"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2b80b8"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#1f78b4"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2f70a7"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40689a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50608e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#605981"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#705175"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f4a69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f435e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d3b52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac3447"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb2d3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c92730"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d72026"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e31b1d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df2924"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc362b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d94333"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d64f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d35c41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06847"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd744e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7f54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78a5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49661"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c2a067"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfab6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb573"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babf78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c97e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d283"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3db88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afdd87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9db83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d87f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d378"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87c96a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c767"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec564"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac361"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52b043"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b246"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b84f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcd6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d175"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd479"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e96c4"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#428ec0"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3686bc"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2a7fb8"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2077b3"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#316fa6"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#426799"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52608c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#625880"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#725074"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#814968"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90425c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f3a50"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae3345"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd2c3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb262f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d91f24"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e21d1e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df2b25"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc382d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d84534"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d5523b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d25e42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf6a49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc764f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c98256"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c68d5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49862"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a368"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bead6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb874"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c27a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cb7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d584"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2de8a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addc86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7da82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c968"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb449"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52b043"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4eae40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b043"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b146"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c766"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93d073"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#418ec0"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3586bc"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#297eb7"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2277b2"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#336fa5"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#436798"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#545f8b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64577f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#735073"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#834867"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92415b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a13a4f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b03344"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be2c38"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd252d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db1e23"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e21f1f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de2d26"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db3a2e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d84735"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d5543c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d26043"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf6c4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc7851"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c98457"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c68f5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39a64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a56a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beb070"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbba75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c47b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d786"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1de89"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abdc85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd379"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d175"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91ce71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc564"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac361"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b246"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cad3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cad3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b246"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb449"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac361"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec564"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c767"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d175"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad378"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd67c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3485bb"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#287eb7"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2376b1"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#346ea4"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#446697"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#555e8a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65577e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#754f72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#844766"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93405a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2394e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b13243"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c02b37"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce242c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc1d21"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e12120"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de2e27"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db3c2f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d74936"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d4553d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d16244"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce6e4b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb7a52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88658"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c5915e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a76b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb271"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbc77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c67c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6d082"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3da87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afde88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aadb84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d880"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d378"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fce70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c766"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b246"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b043"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcd6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#287eb7"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2376b1"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#346ea3"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#456697"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#555e8a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66567d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#754f71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#854765"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#944059"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4384d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b23142"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c12a36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf232b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd1d20"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e12220"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de3028"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da3d30"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d74a37"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d4573e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d16345"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce704c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb7c52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88759"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c5935f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29e66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfa96c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb472"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babe78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c87d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d283"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d77f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93cf73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52b043"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48ab3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46aa3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46aa3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46aa3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d073"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d277"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d87f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2476b0"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#356ea3"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#456696"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#565e89"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66567d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#764e71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#864764"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#953f58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4384d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b33141"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c22a36"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d0232b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de1c20"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e12321"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd3129"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da3e30"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d74b37"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d4583f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06546"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd714c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7d53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c7895a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59460"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29f67"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfaa6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb573"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bac078"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7ca7e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d484"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2dd89"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addc86"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7da82"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a1d77e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d176"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c767"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec564"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac360"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb55"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b043"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50af42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46aa3a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a839"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a839"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a839"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b145"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c96a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d175"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd379"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#356ea3"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#456696"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#565e89"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66567d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#764e70"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#864764"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#953f58"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5384c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b33141"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c22a35"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d1232a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df1c1f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e12421"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd3129"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da3f31"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d74c38"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d3593f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06546"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd724d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7e54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78a5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49561"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c2a167"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfac6d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb773"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c179"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cb7f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d585"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2df8a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc85"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd379"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d175"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c766"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b348"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae40"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46aa3a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a839"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a837"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a838"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b246"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac360"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec564"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#456697"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#565e8a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66567d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#764e71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#864764"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#953f58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5384c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b43141"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c22a35"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d1232a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df1c1f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e12422"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd3229"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da3f31"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d64c38"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d3593f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06646"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd734d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7f54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78b5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49661"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a268"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfad6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb874"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c27a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cc80"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d785"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1df89"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abdc85"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d980"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd67c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad378"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fce70"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc462"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b246"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a736"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a636"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a736"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a839"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b246"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb55"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc665"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93d073"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d377"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd57c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d880"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aadb84"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#555e8a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65567d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#754f71"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#854765"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#953f59"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4384d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b33141"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c22a36"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d1232a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df1c1f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e12422"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd3229"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da3f31"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d64d38"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d35a40"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06647"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd734e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7f54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78b5b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49762"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a268"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bead6e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb874"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c37a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cd80"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d886"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de89"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aadb84"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d880"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d277"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93d073"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac361"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b951"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb64c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52b043"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a838"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a837"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a636"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea534"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea534"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a736"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a737"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a839"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe58"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c665"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcb6d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d175"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd379"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc86"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64577e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#754f72"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#844765"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#944059"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4384d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b33141"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c22a36"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d0232b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de1c1f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e12421"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd3229"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da3f31"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d64d38"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d35a40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06647"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd734e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7f55"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78b5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49762"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a368"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beae6f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbb975"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c47b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce81"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d886"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aadb84"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf73"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec563"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b246"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a736"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea534"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca533"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea534"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a636"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a737"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb54b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe59"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afdd87"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#735073"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#834866"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93405a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2394e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b23242"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c12a37"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf232b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de1d20"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e12321"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd3129"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da3f30"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d74c38"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d3593f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06647"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd734e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7f55"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78b5b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49762"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a368"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beae6f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbb975"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c47b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cf81"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d987"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afde88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9db83"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe59"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b348"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a636"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa331"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa431"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a736"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a838"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b043"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb54b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec564"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93d073"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d880"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aadb84"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1de89"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#824967"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91415b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a13a4f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b03243"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf2b38"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce242c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd1d21"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e12220"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de3028"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da3e30"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d74b38"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d3593f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06646"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd724d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7f54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78b5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49762"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a368"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beae6f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbb975"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c47b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cf81"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3d987"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afde88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9da83"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d77f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c96a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c766"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb55"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb449"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a636"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa331"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a230"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b043"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac361"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fce70"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad378"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc86"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2de89"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90425d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f3a51"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af3345"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be2c39"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd252d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db1e22"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e12120"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de2f28"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da3d2f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d74a37"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d4583e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06546"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd724d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7e54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78a5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49762"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a268"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beae6f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbb975"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c47b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cf81"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3d987"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afde88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9da83"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d77f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d176"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c766"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b043"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a837"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a736"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca533"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a230"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca533"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea534"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a636"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52b043"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcb6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d175"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3da87"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d3b52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad3446"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc2d3a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb262f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da1f23"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e21f1f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de2d27"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db3b2f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d74936"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d4563e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d16445"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd714c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7d53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78a5a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49661"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a268"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bead6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb975"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c47b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce81"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d987"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afde88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9da83"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d77f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d176"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b851"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb54b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4eae40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a230"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a737"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46aa3a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c766"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c96a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aadb84"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de89"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d786"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa3548"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba2e3c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c92730"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d72025"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e21d1e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df2b26"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db392e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d84735"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d4553d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d16244"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce6f4c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb7c53"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c8885a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59560"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c2a167"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfac6e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb874"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c37a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce80"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d886"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9db83"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d77f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d176"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b045"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad40"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a635"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa331"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a736"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb55"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd58"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c767"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93d073"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d377"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd67c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d980"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc85"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2df8a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d484"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b72f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c62832"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d52127"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e31b1c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df2924"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc372c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d84534"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d5533c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d26043"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce6d4b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb7a52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88759"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59360"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29f66"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfab6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb773"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c27a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cd80"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d886"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de89"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9db84"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d176"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46aa3a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa331"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a230"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba030"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba030"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a837"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4eae40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb55"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec563"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd70"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad378"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7d982"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addd87"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d182"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c32935"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d22229"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e11b1e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e02623"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc352b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d94333"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d5513a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d25e42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf6b49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc7851"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88558"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c5915f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29e65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfaa6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb573"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bac179"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cc7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d785"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1de89"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aadb84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab449"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b246"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b043"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48ab3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a93a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a837"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a635"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa032"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da032"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a230"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa431"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4eae40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d175"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd479"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afdd88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3d987"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf242c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de1d20"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e12321"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd3229"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da4031"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d64e39"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d35c41"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf6948"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc764f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c98357"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c68f5e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c64"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a86b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb372"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babf78"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7ca7e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d585"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1df8a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abdb85"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d880"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae40"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa331"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da031"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba030"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca432"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a839"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac361"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d176"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aadb84"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1de89"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d785"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cc7f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da1e23"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e1201f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de2f28"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da3d2f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d74b37"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d3593f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06646"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd734e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca8055"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c68d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39963"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a66a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb171"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babd77"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c87d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d484"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2de8a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc85"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d980"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c96a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c765"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a838"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea534"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da031"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a034"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f35"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f37"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f37"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f35"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a034"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da031"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba030"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea534"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a838"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d880"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abdc85"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2df8a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d484"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7c97e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e21c1d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df2b25"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db392e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d84835"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d4553d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d16345"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce704c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7d54"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78a5b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49762"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a369"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beaf6f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbb76"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c67c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d283"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dd89"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addc86"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd67c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d378"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93d073"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcd6e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c766"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b146"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af43"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46aa3a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a636"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa431"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da031"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f38"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f38"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da031"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa431"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a636"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46aa3a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af43"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b146"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c766"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcd6e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93d073"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d377"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd67c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addc86"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dd89"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d283"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c67c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e02723"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc362b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d94433"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d5523b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d26043"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce6d4a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb7a52"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88759"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59460"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c2a067"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfac6e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb874"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c47b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cf81"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3da87"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7da82"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a1d67d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad378"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad40"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca533"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa032"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a035"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a035"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa032"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca533"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad40"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad378"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a1d67d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7da82"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3da87"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cf81"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c47b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd3129"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da4031"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d64e39"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d35c41"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf6948"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc7750"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c98457"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c6915e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29d65"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfa96c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb573"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c179"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cd80"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d886"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afde88"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9da83"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd479"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d174"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fcd70"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89ca6b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb64c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b146"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a837"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da032"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f38"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da032"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca432"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a837"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c767"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd70"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d074"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd479"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afde88"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d886"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cd80"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c27a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db3b2f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d74937"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d4573e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06546"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd734e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca8055"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c68d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39a63"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a66a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb271"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babe78"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7ca7e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d584"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1df89"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aadb84"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d175"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec564"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd57"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af43"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad40"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba031"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa032"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a230"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fce70"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d175"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d77f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9db84"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de89"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d785"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cb7f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bac078"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d84534"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d5533c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d16144"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce6e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb7c53"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c7895a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49661"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a268"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beaf6f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbb76"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c77c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d283"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2dd89"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc86"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d980"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebe58"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb449"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a230"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a035"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f40"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f40"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f40"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f35"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da032"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa431"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea534"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec563"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d175"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aadb84"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1df8a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d584"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7c97e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babe77"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d64e39"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d35c41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf6a49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc7750"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c98557"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c5925f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29e66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfab6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb774"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c37a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cf81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3da87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7da82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad378"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93d073"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcc6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c96a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b246"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a22f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da032"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b9f39"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba030"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa331"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cad3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec564"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d880"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abdc85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2df8a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d383"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c87d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbc76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d4573e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06546"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd724d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca8055"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c68d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39a63"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a66a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb371"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babf78"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cb7f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d685"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de89"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9db83"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd479"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d174"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd70"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4eae40"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a837"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a033"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da031"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca533"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a636"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a838"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae42"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec564"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcb6d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d980"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc86"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2dd89"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d283"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c67c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbba75"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d25f43"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce6d4a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb7b52"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88859"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49561"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a268"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beae6f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbb76"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c77c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d283"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2de89"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc85"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d880"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec563"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b248"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa032"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f44"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f44"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f37"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca432"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b145"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c968"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd57c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addc86"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc88"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6d182"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c57b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb975"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06747"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc754f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c98356"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c6905e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfa96c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb673"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c27a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3da87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7da82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d378"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93cf73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a230"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba030"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a035"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b9f39"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f44"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f44"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f44"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f35"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd67c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addd86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3db88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cf81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c47b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb774"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce6f4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7d53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78a5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49762"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a469"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb170"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babd77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7c97e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d584"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1de89"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aadb84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d77f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd479"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d174"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb449"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cad3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a838"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a635"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba030"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f35"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f38"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659f47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659e47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f38"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa431"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea534"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d277"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd67c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7d981"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3da87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cf81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c37a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb673"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc7750"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c98457"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c5915f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29f66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfab6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb874"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c47b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6d082"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addc86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d981"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec563"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f35"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f38"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f44"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659e47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f39"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a737"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4eae40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d377"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7d982"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3da87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c27a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb573"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7e54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78b5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49863"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a56a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb271"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babf78"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cb7f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d785"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a1d77e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad378"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93d073"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcd6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c96a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac360"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68bb54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a737"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f35"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f38"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f44"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f45"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba030"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b043"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d377"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7da82"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3d987"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cd80"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c179"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb572"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88557"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c5925f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29f66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfac6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb975"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c57c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d182"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2dd89"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d880"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d176"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c767"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa431"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f38"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659f47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f44"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b9f39"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a230"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca432"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a636"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc564"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d377"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7da82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d987"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cd80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bac179"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb472"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78b5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49863"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a66a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb271"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babf78"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cb7f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d786"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afde88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a1d67d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad378"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93cf73"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a839"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da032"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f44"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e49"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f38"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b246"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec564"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c868"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d277"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7da82"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d987"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cd80"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bac079"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb472"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c5915f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29f66"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfac6d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb874"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c57b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d182"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2dd89"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc85"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d880"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d175"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fce70"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89ca6b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe59"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb54"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb64c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e50"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e49"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa331"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a837"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec563"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d277"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7da82"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d987"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cd80"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bac079"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb472"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49762"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a469"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb171"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babe78"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7ca7f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d785"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a1d67d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad378"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93cf73"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a837"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa331"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba030"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a033"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e49"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e51"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e50"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659f47"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46aa3a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd67c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7d982"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3d987"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cd80"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bac179"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb472"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29d65"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfaa6c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb774"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c37b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6d082"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc86"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d880"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d176"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fce70"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89ca6b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe59"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b348"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a635"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f38"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e52"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f46"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f44"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f40"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a230"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca533"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b045"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb55"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf71"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd67c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3da87"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cd80"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c179"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb472"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a268"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beaf6f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbc76"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c97d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d584"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1de89"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9db83"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad379"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93d073"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50af42"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46aa3a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da031"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f38"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e56"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e56"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a635"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb54"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c767"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addd87"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3da87"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce81"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c27a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb572"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a76b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb472"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c179"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cd80"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3da87"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd57c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe59"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b248"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a838"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba030"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f44"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#809e56"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e56"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e57"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#809e56"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e51"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f40"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa331"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea635"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe58"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89ca6b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fce70"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d176"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d980"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addc86"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3db88"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cf81"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c27a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb673"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfac6d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb975"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c57c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d283"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2de8a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abdb85"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d074"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87c96a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50af42"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a737"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa032"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#809e56"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e58"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e58"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#809e56"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f38"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f35"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b246"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd57"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac361"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c766"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fcd70"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d175"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d880"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc86"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc89"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6d082"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c47b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb773"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beb070"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babd77"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7ca7e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d685"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d378"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb55"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb64c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a838"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa431"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f38"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f40"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#809e56"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e57"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e57"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e49"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659f47"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d074"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abdc85"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2de89"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d182"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c57b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb874"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb472"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c179"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3da87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addd86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d981"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d176"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fce70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b246"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46aa3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a737"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a230"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f39"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659e47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869d59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b045"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcc6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd479"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aadb84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2df8a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d383"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c67c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbb975"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb874"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c57b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d283"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2de89"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abdb85"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd479"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b951"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b045"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e50"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659e47"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f35"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b348"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb55"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec563"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf73"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad378"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a1d77e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9da83"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1de89"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d584"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c87d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbb76"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbb76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c87d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d584"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de89"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9da83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a1d77d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d378"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a837"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e51"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869d59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e50"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a230"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afde88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d785"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7ca7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babd77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babf78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cc7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d886"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd57c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a93a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a736"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f44"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659e47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659e47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a636"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b146"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89ca6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d987"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cc7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babf78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c27a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce81"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3db88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc86"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d880"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d175"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4eae40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa032"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e50"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e56"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d61"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d62"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d62"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d61"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e56"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e50"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa032"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4eae40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d175"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d880"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc86"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3db88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cf81"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c27a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c47b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d182"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2de89"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abdb85"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd479"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec564"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb55"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a230"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659e47"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#809e56"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d62"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d62"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#809e56"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659e47"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a230"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb55"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec564"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd479"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abdb85"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2de89"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d182"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c47b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c77c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d384"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1df89"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9db84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a1d77e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad378"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b246"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a736"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f35"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d62"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d62"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d63"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d62"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b9f39"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f35"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a636"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a93a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c868"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcb6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d378"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a1d77d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9da83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1de89"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d484"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c77d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c97d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d685"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c767"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc462"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a839"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa331"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659e47"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e50"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4eae40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b045"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac361"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c766"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89ca6b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd67c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7d982"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afdd88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d786"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7ca7e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7ca7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d786"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afdd88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7d982"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd57c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c766"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac361"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48ab3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f38"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f45"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#809e56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d63"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d68"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d68"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d62"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca533"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a737"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cad3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b248"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87c96a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d175"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d880"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addc86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3db87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cc7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d987"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d175"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fcd70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b043"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca533"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d63"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d68"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d68"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d63"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa431"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b84f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93d073"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd379"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aadb84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2de89"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d182"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cd80"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3da87"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addc86"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d880"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d175"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c96a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af43"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a736"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f44"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#809e56"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d63"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d69"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a49d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a49d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d68"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d68"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d67"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d63"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d61"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869d59"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f40"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba030"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a230"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de89"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d584"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3db88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d880"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d074"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcd6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec564"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b246"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a635"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa431"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d68"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a49d6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d63"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a736"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d175"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d981"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3d987"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cf81"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc85"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec563"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f38"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e50"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d62"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d68"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a49d69"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a99c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a99c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a49d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d68"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d63"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e56"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea534"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93d073"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd479"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d77f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abdb85"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2dd89"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cf81"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc85"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd479"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c968"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe59"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea534"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f38"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f44"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659f47"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#809e56"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d62"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d68"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a49d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a99c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d63"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d61"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e49"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b043"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b951"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac361"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c766"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de89"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cf81"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc85"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd479"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d073"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe58"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a230"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba031"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e51"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d63"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a49d69"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c70"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c70"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c70"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c70"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89d6c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d68"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d62"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e56"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659f47"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f44"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f40"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb54b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc564"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d175"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d980"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addd86"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cf81"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc85"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd479"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d073"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4eae40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f35"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d62"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c70"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b29c71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b29c71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b29c71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c70"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d68"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e56"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e50"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a737"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad378"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aadb84"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce81"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3db88"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc86"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd479"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c868"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe58"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb449"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b145"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4eae40"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a837"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da031"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f45"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e50"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e56"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e58"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d62"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a49d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c71"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b29c71"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b29c71"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c70"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c70"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a99c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d68"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d62"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f38"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50af42"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b246"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abc55"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fce70"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d176"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd57c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7d982"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cd80"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3da87"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc86"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d880"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b145"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4eae40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a837"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da032"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e49"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e56"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a99c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b29c71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c73"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c74"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c74"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c73"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c73"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b29c71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a99c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d63"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869d59"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93d073"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd479"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cc7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3d987"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addd86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d880"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd47a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d074"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcd6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec563"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4eae40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48ab3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a837"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a49d6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89d6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b29c71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c74"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c74"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#809e56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b9f39"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba030"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d276"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7ca7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d886"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d175"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec564"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48ab3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a837"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a99c6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b29c71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d63"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659f47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca432"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a737"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebe58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c97d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d685"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afde88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7d982"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd57c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d176"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fcd70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da032"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d63"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a49d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae9c6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b29c71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e50"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f35"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a839"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b246"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c766"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c67c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d484"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de89"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d276"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a22f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b29c71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c79"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c74"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d62"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#809e56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f44"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c47b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d282"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2df8a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9db84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a1d77d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d377"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c766"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b851"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a839"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea534"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d63"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a99c6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c79"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c79"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d68"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da032"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c179"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cf81"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc89"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abdc85"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d77f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad379"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf73"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba031"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f35"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d69"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c79"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c79"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c79"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c78"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c70"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e49"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a034"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa331"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52b043"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babe77"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cc7f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3d987"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addc86"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d880"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc562"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd58"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52b043"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a635"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa331"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b29c71"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c75"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c78"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c79"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c75"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c70"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a99c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d63"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e57"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e50"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4eae40"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbba75"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c87d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d685"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afde88"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d175"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec564"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe59"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab449"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f45"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e49"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d67"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c70"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c73"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c78"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c71"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a99c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d68"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#809e56"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659f47"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da031"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb64c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb673"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c47b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d283"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1df8a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9da83"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c35f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb55"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae40"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e50"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c79"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99c7e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c74"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c71"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a99c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a49d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e51"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa431"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a736"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe59"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec564"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb271"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bac079"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abdc85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d77f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad378"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c767"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc361"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b246"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99c7d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99c7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c79"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c74"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a49d6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e50"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f38"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca533"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a837"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bead6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbc76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7ca7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d886"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d981"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd47a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d074"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659e47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c74"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c7a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c7a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e50"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b248"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a86c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb774"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c57c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d383"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1de89"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fce70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb449"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a736"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa431"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f39"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#809e56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99b7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d19b82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d19b82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99b7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#809e56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f39"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa431"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a736"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab449"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a369"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb271"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bac079"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce81"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc88"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abdc85"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad378"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac361"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a837"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a033"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d69"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c75"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c79"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d19b82"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b82"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b82"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d19b82"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c79"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c75"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d69"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a033"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a837"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29d65"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfac6e"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbb76"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7c97e"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d785"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57b"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d174"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c868"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd57"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea534"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a230"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f44"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d62"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d68"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c73"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c75"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99c7e"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d19b82"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b84"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b84"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d19b82"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99c7e"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d68"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d62"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea534"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a839"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64c"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49762"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a66a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb572"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c37a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d182"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2df8a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9db83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb449"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46aa3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a636"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa331"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba030"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f35"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659e47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e50"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d62"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99b7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d69b85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d69b85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d69b85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99b7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c6915e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c2a067"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beae6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babd77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cb7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3d987"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addc86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d880"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd479"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93d073"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b246"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a837"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f38"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c74"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d19b82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d69b85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d99b86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d99b86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d69b85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d19b82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c79"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d62"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659f47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78a5a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39963"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a86b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb673"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c57b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d383"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1de89"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd67c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d176"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd70"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c96a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec564"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe58"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52b043"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a49d69"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a99c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c79"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b82"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b84"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b85"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d99b87"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d99b87"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d99b86"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b86"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d69b85"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b82"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c79"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d61"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e57"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a837"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b246"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c98256"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c5925f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c2a167"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beb06f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babe78"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cc80"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3db88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc86"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd379"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac361"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4eae40"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659e47"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d62"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d69"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b29c71"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c78"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b81"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d69b85"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d99b87"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d99b86"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b86"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b85"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d19b82"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b81"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#809e56"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a838"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb7a52"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78a5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39963"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a86b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb774"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c57c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d484"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de89"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7da82"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd57c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d175"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec563"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd58"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b348"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a839"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea534"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f38"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e56"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d61"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c71"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c73"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b81"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b84"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b85"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d99b86"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b85"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#809e56"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e49"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f40"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea635"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd724d"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c98256"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c5915f"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c2a067"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beaf6f"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babe78"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cc80"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3db88"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc85"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd379"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac360"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb55"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a736"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa431"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba030"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f36"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d63"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c70"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b81"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b84"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b86"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d99b87"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df9b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e09b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e09b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e09b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e09b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e09b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df9b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b84"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b82"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c75"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f44"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f40"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a635"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46aa3a"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf6948"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb7951"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c7895a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49862"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a76b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb673"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c57b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d383"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1de89"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da82"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd67c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d176"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec563"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b248"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c74"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c79"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99c7e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b84"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df9b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e09b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e29b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e29b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e29b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e09b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df9b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d99b86"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d69b85"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d19b82"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c75"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f35"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba030"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa431"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d26043"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce704c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca8055"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c68f5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29f66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beae6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbd77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cb7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3d987"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addc86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d880"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd479"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93cf73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c767"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac361"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a736"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa331"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d68"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c74"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e09b8a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e29b8b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e49b8c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e49b8c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e29b8b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df9b8a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d4563e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06747"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc7750"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88658"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49661"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a56a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb472"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c37a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d182"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2df8a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9da83"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fce70"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a839"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d63"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a49d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c70"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c73"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b81"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b84"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df9b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e09b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e29b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e49b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e49b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e29b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df9b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b85"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c78"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c73"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d63"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659e47"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d74c38"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d25d41"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce6d4a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7d53"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78c5c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c64"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfab6d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbba75"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c87d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d785"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d981"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc462"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae40"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa432"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba030"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f36"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e51"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e56"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b29c71"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c74"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c79"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d19b82"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b86"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df9b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e49b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e69b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e79b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e79b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e79b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e79b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e69b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e69b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e49b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e29b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e09b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d99b87"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d69b85"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b81"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c73"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c70"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d63"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659f47"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d94132"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d5523b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d16244"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd734d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c98256"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c5925f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a168"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beb070"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babf78"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce80"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc88"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abdb85"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d378"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf71"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b043"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d67"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c79"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b82"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b85"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df9b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e69b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e79b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e89b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e89b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e99b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e99b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e99b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e89b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e79b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e69b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df9b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b86"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d19b82"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99c7e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c73"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c71"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d63"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f38"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc362c"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d84735"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d4583e"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06848"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc7851"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88859"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49762"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a76b"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb673"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c47b"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d383"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1de89"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da82"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd57c"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d175"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a837"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca432"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f44"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869d59"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d68"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89d6c"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c75"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d69b85"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d99b87"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df9b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e79b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e89b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e99b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ea9b90"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ea9b90"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ea9a90"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ea9a90"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ea9b90"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ea9b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e99b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e89b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e69b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e49b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e09b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b84"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d19b82"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c79"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c71"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d63"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e50"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df2a25"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db3c2f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d64c38"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d25d41"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce6d4a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7d53"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c68d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c65"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfac6d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbb76"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7c97e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d886"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d880"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93d073"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c767"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac361"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b145"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46aa3a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a635"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da032"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c73"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d19b82"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b84"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e79b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e99b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ea9b90"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#eb9a90"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ec9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ec9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ec9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ec9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ec9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#eb9a90"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ea9b90"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e99b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e79b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e69b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e49b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df9b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d99b87"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d69b85"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b81"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c79"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b29c71"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e50"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e21e1e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de2f28"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d94031"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d5513b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d16244"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd724d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c98256"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c5925f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a167"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beb070"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babf78"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce80"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc88"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abdb85"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d378"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a839"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659e47"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e50"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b82"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b86"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e79b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e99b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ea9a90"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ec9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ed9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ed9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ee9a92"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ee9a92"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ee9a92"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ed9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ec9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#eb9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ea9b90"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e99b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e79b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e09b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b85"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c74"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b29c71"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e50"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f46"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da1e23"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e12321"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd342b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d84534"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d4563d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06647"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc7650"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88658"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49661"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a56a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb472"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c37b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d283"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1df89"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd67c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d176"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f35"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f40"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f44"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e56"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d62"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a49d69"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c73"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b81"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d69b85"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e09b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e79b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e99b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#eb9a90"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ec9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ed9a92"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ee9a92"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ef9a92"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ef9a93"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ef9a93"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ef9a93"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ef9a92"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ee9a92"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ed9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ec9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ea9b90"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e89b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e69b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e49b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b82"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c75"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d68"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e50"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f46"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd242d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df1c1f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e02723"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db382d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d74936"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d35a40"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf6a49"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb7a52"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78a5b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39a63"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfa96c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb874"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c77d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d685"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afdd88"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a635"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c71"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c75"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b82"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df9b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e29b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e79b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e99b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#eb9a90"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ed9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ee9a92"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ef9a93"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f09a93"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f19a93"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f19a93"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f19a93"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f19a93"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f09a93"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ef9a93"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ee9a92"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ed9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#eb9a90"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e99b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e79b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e29b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df9b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d99b86"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b84"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d19b82"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf2b38"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d1232a"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e31a1c"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df2b26"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da3c2f"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d64d39"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d25e42"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce6e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7e54"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c68e5d"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29e65"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bead6e"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbc76"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cb7f"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3d987"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addc86"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd379"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6c"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c766"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b043"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea534"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659e47"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d61"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d69"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a99c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c70"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b81"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d69b85"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e49b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e69b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e99b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#eb9a90"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ed9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ee9a92"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f09a93"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f19a93"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f29a94"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f29a94"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f29a94"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f29a94"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f29a94"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f19a94"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f19a93"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f09a93"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ee9a92"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ed9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#eb9a90"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e99b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e69b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e09b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d69b85"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99c7e"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c78"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c75"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b13243"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c32935"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d52127"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e21d1e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de2f28"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da4031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d5513b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d16144"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd724d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c98256"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c5915f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a167"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beb070"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babf78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc89"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aadb84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a1d77e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d277"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b248"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d63"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e09b8a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e69b8d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e89b8f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#eb9a90"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ed9a91"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ef9a92"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f09a93"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f19a94"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f29a94"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f39a95"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f49a95"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f49a95"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f49a95"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f49a95"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f39a95"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f29a94"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f19a94"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f09a93"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ee9a92"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ec9a91"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ea9b90"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e79b8e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e29b8b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db9b87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a99c6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2394f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b43140"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c62832"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d81f25"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e12020"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd3229"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d94333"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d5543c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d16446"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc754f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88558"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59460"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a469"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb372"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c27a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6d182"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2df8a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9da83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b246"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a737"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa432"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f45"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d68"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99c7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d69b85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e79b8e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ea9b90"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ec9a91"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ee9a92"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f09a93"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f29a94"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f39a95"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f49a95"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f59a96"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f59a96"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f59a96"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f59a96"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f59a96"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f49a95"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f39a95"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f29a94"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f19a93"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ef9a93"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ed9a91"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#eb9a90"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e89b8f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e69b8d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df9b8a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c79"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a99c6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92415b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5384c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b72f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c92630"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db1e22"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e12321"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc352b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d84634"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d4573e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06747"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc7750"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88759"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49762"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a76b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb673"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c57b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d384"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de89"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7da82"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d175"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb54b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a635"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d69"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a99c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c70"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c79"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e09b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e69b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e99b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ec9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ee9a92"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f09a93"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f29a94"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f39a95"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f59a95"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f69a96"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f69a96"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f79a97"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f79a97"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f79a97"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f69a96"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f69a96"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f59a96"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f49a95"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f29a94"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f09a93"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ee9a92"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ec9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ea9b90"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e79b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e49b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d99b87"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b84"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d19b82"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c70"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a49d69"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#824967"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#954059"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7374a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b92e3c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb252e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd1d21"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e02623"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc372c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d84836"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d3593f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf6948"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb7a51"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78a5a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39963"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfa96c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb874"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c77d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d685"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afdd88"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac361"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abc55"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f38"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a49d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c71"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d19b82"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d69b85"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e89b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#eb9a90"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ed9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f09a93"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f29a94"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f39a95"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f59a96"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f69a96"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f79a97"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f89a97"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f89a97"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f89a97"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f89a97"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f89a97"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f79a97"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f69a96"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f59a96"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f49a95"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f29a94"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f09a93"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ee9a92"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#eb9a90"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e89b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e29b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d69b85"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c74"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b29c71"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d62"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#715175"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#844866"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#973f57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a93649"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc2d3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce242d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df1c1f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e02824"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db392d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d74a37"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d35b40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf6b49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb7c53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78c5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39b64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfab6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbba75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7c97e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d886"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addd87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d880"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd479"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93cf73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52b043"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f39"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f44"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99b7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db9b88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df9b8a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e69b8e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e99b8f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ec9a91"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ef9a92"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f19a94"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f39a95"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f59a96"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f69a96"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f79a97"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f89a98"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f99a98"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f99a98"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#fa9a98"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#fa9a98"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f99a98"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f89a98"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f89a97"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f69a96"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f59a96"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f39a95"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f19a94"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ef9a92"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ec9a91"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e99b8f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e69b8e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df9b8a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99b7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f5982"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#735073"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#864764"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#983e56"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab3547"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd2c39"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf232b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e11b1e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df2a25"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db3b2e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d74c38"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d25d41"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce6d4a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7d54"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c68d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29d65"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfad6e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbc76"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cb7f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3d987"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc86"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad378"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af43"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca533"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f44"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e49"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d68"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b81"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d99b86"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e49b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e89b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#eb9a90"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ee9a92"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f09a93"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f29a94"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f49a95"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f69a96"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f89a97"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f99a98"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#fa9a98"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#fa9a99"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#fb9a99"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#fb9a99"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#fb9a99"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#fa9a99"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#fa9a98"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f99a98"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f89a97"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f69a96"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f49a95"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f29a94"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f09a93"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ee9a92"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#eb9a90"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e89b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e49b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d99b86"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b81"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.5"/></g><g fill-opacity="1.0" font-size="3.4999999999999996e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="start"><text x="0.589683649897331" y="-7.018242076070524e-2">-6</text></g><g fill-opacity="1.0" font-size="3.4999999999999996e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="start"><text x="0.589683649897331" y="-0.16406188221446893">-4</text></g><g fill-opacity="1.0" font-size="3.4999999999999996e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="start"><text x="0.589683649897331" y="-0.2579413436682325">-2</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#000000"><g transform="rotate(-90.0, 0.5559548254620126, -8.033242076070524e-2)"><polyline points="0.5559548254620126,-6.983242076070524e-2
+0.5559548254620126,-9.083242076070523e-2"/></g><g transform="rotate(-90.0, 0.5559548254620126, -0.17421188221446893)"><polyline points="0.5559548254620126,-0.16371188221446892
+0.5559548254620126,-0.18471188221446894"/></g><g transform="rotate(-90.0, 0.5559548254620126, -0.2680913436682326)"><polyline points="0.5559548254620126,-0.2575913436682326
+0.5559548254620126,-0.2785913436682326"/></g></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3cce2"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-3.4999999999999476e-3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cc8df"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-7.000000000000006e-3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95c3dd"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-1.0499999999999954e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ebfdb"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-1.4000000000000012e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88bbd8"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-1.749999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81b6d6"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-2.100000000000002e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ab2d4"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-2.4499999999999966e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73aed1"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-2.8000000000000025e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6da9cf"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-3.149999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66a5cd"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-3.500000000000003e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fa1ca"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-3.849999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589dc8"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-4.200000000000004e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5298c6"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-4.5499999999999985e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b94c3"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-4.899999999999993e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4490c1"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-5.249999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3d8bbf"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-5.599999999999994e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3787bc"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-5.95e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3083ba"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-6.299999999999994e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#297eb8"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-6.65e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#227ab5"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-6.999999999999995e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2476b0"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-7.350000000000001e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2e71a9"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-7.699999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#386ca1"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-8.050000000000002e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#416899"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-8.399999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b6392"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-8.750000000000002e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#555e8a"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-9.099999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f5983"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-9.450000000000003e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68557b"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-9.799999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#725073"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.10150000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c4b6c"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.10499999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#864764"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.10850000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90425d"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.11199999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a3d55"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.11549999999999994"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3394d"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.119"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad3446"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.12249999999999994"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b72f3e"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.1259999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c12a37"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.12949999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca262f"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.133"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d42127"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.13649999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de1c20"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e21f1f"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.14349999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df2924"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.14700000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd332a"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.15049999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da3c2f"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.15400000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d84635"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.15749999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d6503a"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.16099999999999992"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d35a40"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.16449999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d16445"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.16799999999999993"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce6e4b"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.17149999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc7850"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.17500000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c98156"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.1785"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78b5b"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.18199999999999994"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49561"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.1855"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29f66"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.18899999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfa96c"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.1925"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb371"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.19599999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbd77"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.1994999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c67c"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.20299999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6d082"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.20650000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3da87"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afdd88"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.21350000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.21699999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77e"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.22049999999999992"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.22399999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d175"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.22749999999999992"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fce70"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.23099999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6b"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.23449999999999993"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c767"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.238"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.24149999999999994"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15d"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.24499999999999988"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe59"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.24849999999999994"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.252"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.25549999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44b"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.259"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.26249999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.266"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.26949999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.2729999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.27649999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22e"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="3.4999999999998366e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.28349999999999986"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.2869999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.2905"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.29400000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.2975"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.30099999999999993"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.3045"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.30799999999999994"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.3114999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.31499999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.3185"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="3.4999999999998366e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.32199999999999984"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.3254999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c76"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.32899999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.3325"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b80"><rect height="3.4999999999998366e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.33599999999999985"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.3394999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e29b8b"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.34299999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ec9a91"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.3464999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f69a96"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.35"/></g><g fill-opacity="1.0" font-size="5.5999999999999994e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="0.5236139630390146" y="-0.385">rosenbrock</text></g><g></g></svg>
diff --git a/other/surfaceg.svg b/other/surfaceg.svg
new file mode 100644
# file too large to diff: other/surfaceg.svg
diff --git a/other/svgoptions.svg b/other/svgoptions.svg
--- a/other/svgoptions.svg
+++ b/other/svgoptions.svg
@@ -1,5 +1,5 @@
-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.385 -0.5275 0.77 1.0625" width="210.0" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="1.0" stroke="#a6cee3" stroke-width="1.5e-2" fill="none"><polyline points="-0.35,0.3
--0.11666666666666667,0.3
-0.11666666666666664,-0.5"/></g><g stroke-opacity="1.0" stroke="#1f78b4" stroke-width="3.0e-2" fill="none"><polyline points="-0.35,0.5
-0.35,-0.10000000000000009"/></g><g stroke-opacity="1.0" stroke="#e31a1c" stroke-width="1.0e-2" fill="none"><polyline points="-0.23333333333333334,-0.30000000000000004
--0.23333333333333334,0.5"/></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.385 -0.5275 0.7699999999999999 1.0625" width="217.41176470588235" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="1.0" stroke="#a6cee3" stroke-width="1.5e-2" fill="none"><polyline points="-0.35,0.29999999999999993
+-9.999999999999998e-2,0.29999999999999993
+0.15000000000000002,-0.5"/></g><g stroke-opacity="1.0" stroke="#1f78b4" stroke-width="3.0e-2" fill="none"><polyline points="-0.35,0.5
+0.34999999999999987,-0.10000000000000009"/></g><g stroke-opacity="1.0" stroke="#fb9a99" stroke-width="1.0e-2" fill="none"><polyline points="-0.22499999999999998,-0.30000000000000016
+-0.22499999999999998,0.5"/></g></svg>
diff --git a/other/text.svg b/other/text.svg
--- a/other/text.svg
+++ b/other/text.svg
@@ -1,1 +1,1 @@
-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.7825 -0.56625 1.5649999999999997 1.1125" width="450.0" xmlns:xlink="http://www.w3.org/1999/xlink"><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.75" y="0.5">a</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.6001859947935978" y="0.4583333333333333">b</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.45186888160529204" y="0.4166666666666667">c</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.30653059600294075" y="0.375">d</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.16562331009383302" y="0.33333333333333337">e</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-3.0554922901016357e-2" y="0.2916666666666667">f</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="9.732500689835133e-2" y="0.25">g</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.21673874531719906" y="0.20833333333333337">h</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.32649314975417987" y="0.16666666666666669">i</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.42549159048014196" y="0.125">j</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.5127449077998854" y="8.333333333333337e-2">k</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.5873812954088633" y="4.1666666666666685e-2">l</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.648655011193596" y="-0.0">m</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.6959538284403604" y="-4.166666666666663e-2">n</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.7288051530021371" y="-8.333333333333326e-2">o</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.7468807453031086" y="-0.125">p</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.7499999999999998" y="-0.16666666666666663">q</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.7381317505309688" y="-0.20833333333333326">r</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.711394580521588" y="-0.25">s</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.6700556389364576" y="-0.29166666666666663">t</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.6145279708150593" y="-0.33333333333333326">u</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.545366390262255" y="-0.375">v</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.4632619369291493" y="-0.41666666666666663">w</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.369034971373323" y="-0.45833333333333326">x</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.26362697828731596" y="-0.5">y</text></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.7825 -0.56625 1.565 1.1125" width="422.02247191011236" xmlns:xlink="http://www.w3.org/1999/xlink"><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.75" y="0.5">a</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.6001859947935977" y="0.45833333333333337">b</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.451868881605292" y="0.4166666666666667">c</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.3065305960029406" y="0.375">d</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.1656233100938329" y="0.33333333333333337">e</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-3.0554922901016246e-2" y="0.29166666666666674">f</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="9.732500689835166e-2" y="0.25">g</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.2167387453171994" y="0.20833333333333343">h</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.32649314975417987" y="0.16666666666666669">i</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.4254915904801422" y="0.125">j</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.5127449077998856" y="8.333333333333337e-2">k</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.5873812954088635" y="4.166666666666674e-2">l</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.6486550111935965" y="-0.0">m</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.6959538284403606" y="-4.166666666666663e-2">n</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.7288051530021376" y="-8.333333333333315e-2">o</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.7468807453031088" y="-0.125">p</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.75" y="-0.16666666666666663">q</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.738131750530969" y="-0.20833333333333326">r</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.7113945805215882" y="-0.25">s</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.6700556389364578" y="-0.29166666666666663">t</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.6145279708150595" y="-0.33333333333333326">u</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.5453663902622552" y="-0.375">v</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.4632619369291495" y="-0.4166666666666665">w</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.369034971373323" y="-0.45833333333333326">x</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.2636269782873162" y="-0.5">y</text></g></svg>
diff --git a/other/unit.svg b/other/unit.svg
--- a/other/unit.svg
+++ b/other/unit.svg
@@ -1,1 +1,1 @@
-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.775 -0.525 1.55 1.05" width="450.0" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="1.0e-2" fill="#1f78b4"><rect height="1.0" width="1.5" x="-0.75" y="-0.5"/></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.775 -0.525 1.55 1.05" width="442.8571428571429" xmlns:xlink="http://www.w3.org/1999/xlink"><style type="text/css">* { shape-rendering: crispEdges; }</style><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="1.0e-2" fill="#1f78b4"><rect height="1.0" width="1.5" x="-0.75" y="-0.5"/></g></svg>
diff --git a/other/venn.svg b/other/venn.svg
--- a/other/venn.svg
+++ b/other/venn.svg
@@ -1,1 +1,29 @@
-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-1.52 -1.52 3.04 3.04" width="300.0" xmlns:xlink="http://www.w3.org/1999/xlink"><g fill-opacity="1.0" font-size="0.8" stroke="none" stroke-width="0.0" fill="#1a0033" text-anchor="middle"><text transform="rotate(0.0, 0.0, 0.2)" x="0.0" y="0.2">λ</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#ffffff" stroke-width="6.0e-2" fill="#0ea194"><path transform="translate(0.0, -0.0)" d="M0.0,-1.2320508075688774 A0.5 0.5 0.0 1 1 1.0,0.5 1.0 1.0 0.0 0 0 0.5,-0.3660254037844387 1.0 1.0 0.0 0 0 0.0,-1.2320508075688774 Z"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#ffffff" stroke-width="6.0e-2" fill="#0a865a"><path transform="translate(0.0, -0.0)" d="M-1.0,0.5 A0.5 0.5 0.0 1 0 1.0,0.5 1.0 1.0 0.0 0 1 0.0,0.5 1.0 1.0 0.0 0 1 -1.0,0.5 Z"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#ffffff" stroke-width="6.0e-2" fill="#9d1102"><path transform="translate(0.0, -0.0)" d="M-1.0,0.5 A0.5 0.5 0.0 1 1 0.0,-1.2320508075688774 1.0 1.0 0.0 0 0 -0.5,-0.3660254037844387 1.0 1.0 0.0 0 0 -1.0,0.5 Z"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#ffffff" stroke-width="6.0e-2" fill="#f8a631"><path transform="translate(0.0, -0.0)" d="M0.0,-1.2320508075688774 A1.0 1.0 0.0 0 1 0.5,-0.3660254037844387 1.0 1.0 0.0 0 0 -0.5,-0.3660254037844387 1.0 1.0 0.0 0 1 0.0,-1.2320508075688774 Z"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#ffffff" stroke-width="6.0e-2" fill="#695b1e"><path transform="translate(0.0, -0.0)" d="M0.5,-0.3660254037844387 A1.0 1.0 0.0 0 1 1.0,0.5 1.0 1.0 0.0 0 1 0.0,0.5 1.0 1.0 0.0 0 0 0.5,-0.3660254037844387 Z"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#ffffff" stroke-width="6.0e-2" fill="#31331c"><path transform="translate(0.0, -0.0)" d="M0.0,0.5 A1.0 1.0 0.0 0 1 -1.0,0.5 1.0 1.0 0.0 0 1 -0.5,-0.3660254037844387 1.0 1.0 0.0 0 0 0.0,0.5 Z"/></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.62 -0.5531904665405744 1.155514898098931 1.1478097383497188" width="302.01387725468084" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="0.900657479960371" width="0.8722082765396367" x="-0.37220827653963673" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.37220827653963673,0.4006574799603711
+0.5,0.4006574799603711"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.37220827653963673,0.250547899966976
+0.5,0.250547899966976"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.37220827653963673,0.10043831997358077
+0.5,0.10043831997358077"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.37220827653963673,-4.967126001981437e-2
+0.5,-4.967126001981437e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.37220827653963673,-0.1997808400132095
+0.5,-0.1997808400132095"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.37220827653963673,-0.34989042000660453
+0.5,-0.34989042000660453"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.37220827653963673,-0.5
+0.5,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="0.4137170134197965">-1.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="0.26360743342640136">-1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="0.11349785343300617">-0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="-3.6611726560389024e-2">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="-0.18672130655378405">0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="-0.3368308865471793">1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="-0.4869404665405743">1.5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><g transform="rotate(-90.0, -0.4715878153917213, 0.4006574799603711)"><polyline points="-0.4715878153917213,0.4156574799603711
+-0.4715878153917213,0.3856574799603711"/></g><g transform="rotate(-90.0, -0.4715878153917213, 0.250547899966976)"><polyline points="-0.4715878153917213,0.26554789996697603
+-0.4715878153917213,0.235547899966976"/></g><g transform="rotate(-90.0, -0.4715878153917213, 0.10043831997358077)"><polyline points="-0.4715878153917213,0.11543831997358077
+-0.4715878153917213,8.543831997358077e-2"/></g><g transform="rotate(-90.0, -0.4715878153917213, -4.967126001981437e-2)"><polyline points="-0.4715878153917213,-3.467126001981437e-2
+-0.4715878153917213,-6.467126001981437e-2"/></g><g transform="rotate(-90.0, -0.4715878153917213, -0.1997808400132095)"><polyline points="-0.4715878153917213,-0.1847808400132095
+-0.4715878153917213,-0.21478084001320952"/></g><g transform="rotate(-90.0, -0.4715878153917213, -0.34989042000660453)"><polyline points="-0.4715878153917213,-0.3348904200066045
+-0.4715878153917213,-0.36489042000660454"/></g><g transform="rotate(-90.0, -0.4715878153917213, -0.5)"><polyline points="-0.4715878153917213,-0.485
+-0.4715878153917213,-0.515"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="0.900657479960371" width="4.361041382698216e-3" x="-0.4606852119349759" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.37220827653963673,0.4006574799603711
+-0.37220827653963673,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.2268402304496973,0.4006574799603711
+-0.2268402304496973,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-8.147218435975778e-2,0.4006574799603711
+-8.147218435975778e-2,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="6.389586173018169e-2,0.4006574799603711
+6.389586173018169e-2,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.20926390782012116,0.4006574799603711
+0.20926390782012116,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.3546319539100604,0.4006574799603711
+0.3546319539100604,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.5,0.4006574799603711
+0.5,-0.5"/></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, -0.37220827653963673, 0.5)" x="-0.37220827653963673" y="0.5">-1.5</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, -0.2268402304496973, 0.5)" x="-0.2268402304496973" y="0.5">-1</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, -8.147218435975778e-2, 0.5)" x="-8.147218435975778e-2" y="0.5">-0.5</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, 6.389586173018169e-2, 0.5)" x="6.389586173018169e-2" y="0.5">0</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, 0.20926390782012116, 0.5)" x="0.20926390782012116" y="0.5">0.5</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, 0.3546319539100604, 0.5)" x="0.3546319539100604" y="0.5">1</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, 0.5, 0.5)" x="0.5" y="0.5">1.5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="-0.37220827653963673,0.4449288480590831
+-0.37220827653963673,0.4149288480590831"/><polyline points="-0.2268402304496973,0.4449288480590831
+-0.2268402304496973,0.4149288480590831"/><polyline points="-8.147218435975778e-2,0.4449288480590831
+-8.147218435975778e-2,0.4149288480590831"/><polyline points="6.389586173018169e-2,0.4449288480590831
+6.389586173018169e-2,0.4149288480590831"/><polyline points="0.20926390782012116,0.4449288480590831
+0.20926390782012116,0.4149288480590831"/><polyline points="0.3546319539100604,0.4449288480590831
+0.3546319539100604,0.4149288480590831"/><polyline points="0.5,0.4449288480590831
+0.5,0.4149288480590831"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.503287399801881e-3" width="0.8722082765396367" x="-0.37220827653963673" y="0.4141673421597767"/></g><g stroke-opacity="0.8" fill-opacity="0.2" stroke="#1f78b4" stroke-width="1.0e-2" fill="#a6cee3"><path d="M 0.0639,-0.4196 A 0.14536804608993945 0.15010957999339516 -0.0 1 1 0.3546,0.1004 A 0.2907360921798789 0.30021915998679033 -0.0 0 0 0.2093,-0.1596 A 0.2907360921798789 0.30021915998679033 -0.0 0 0 0.0639,-0.4196 L 0.0639,-0.4196"/></g><g stroke-opacity="0.8" fill-opacity="0.2" stroke="#1f78b4" stroke-width="1.0e-2" fill="#1f78b4"><path d="M -0.2268,0.1004 A 0.14536804608993945 0.15010957999339516 -0.0 1 0 0.3546,0.1004 A 0.2907360921798789 0.30021915998679033 -0.0 0 1 0.0639,0.1004 A 0.2907360921798789 0.30021915998679033 -0.0 0 1 -0.2268,0.1004 L -0.2268,0.1004"/></g><g stroke-opacity="0.8" fill-opacity="0.2" stroke="#1f78b4" stroke-width="1.0e-2" fill="#e31a1c"><path d="M -0.2268,0.1004 A 0.14536804608993945 0.15010957999339516 -0.0 1 1 0.0639,-0.4196 A 0.2907360921798789 0.30021915998679033 -0.0 0 0 -0.0815,-0.1596 A 0.2907360921798789 0.30021915998679033 -0.0 0 0 -0.2268,0.1004 L -0.2268,0.1004"/></g><g stroke-opacity="0.8" fill-opacity="0.2" stroke="#1f78b4" stroke-width="1.0e-2" fill="#b2df8a"><path d="M 0.2093,-0.1596 A 0.2907360921798789 0.30021915998679033 -0.0 0 1 0.3546,0.1004 A 0.2907360921798789 0.30021915998679033 -0.0 0 1 0.0639,0.1004 A 0.2907360921798789 0.30021915998679033 -0.0 0 0 0.2093,-0.1596 L 0.2093,-0.1596"/></g><g stroke-opacity="0.8" fill-opacity="0.2" stroke="#1f78b4" stroke-width="1.0e-2" fill="#33a02c"><path d="M 0.0639,0.1004 A 0.2907360921798789 0.30021915998679033 -0.0 0 1 -0.2268,0.1004 A 0.2907360921798789 0.30021915998679033 -0.0 0 1 -0.0815,-0.1596 A 0.2907360921798789 0.30021915998679033 -0.0 0 0 0.0639,0.1004 L 0.0639,0.1004"/></g><g stroke-opacity="0.8" fill-opacity="0.2" stroke="#1f78b4" stroke-width="1.0e-2" fill="#fb9a99"><path d="M 0.0639,-0.4196 A 0.2907360921798789 0.30021915998679033 -0.0 0 1 0.2093,-0.1596 A 0.2907360921798789 0.30021915998679033 -0.0 0 0 -0.0815,-0.1596 A 0.2907360921798789 0.30021915998679033 -0.0 0 1 0.0639,-0.4196 L 0.0639,-0.4196"/></g><g stroke-opacity="0.8" fill-opacity="0.2" stroke="#1f78b4" stroke-width="1.0e-2" fill="#fdbf6f"><path d="M 0.2093,-0.1596 A 0.2907360921798789 0.30021915998679033 -0.0 0 1 0.0639,0.1004 A 0.2907360921798789 0.30021915998679033 -0.0 0 1 -0.0815,-0.1596 A 0.2907360921798789 0.30021915998679033 -0.0 0 1 0.2093,-0.1596 L 0.2093,-0.1596"/></g><g></g></svg>
diff --git a/other/wave.svg b/other/wave.svg
new file mode 100644
--- /dev/null
+++ b/other/wave.svg
@@ -0,0 +1,1 @@
+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.7865 -0.5365 1.573 1.073" width="439.7949673811743" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="3.0e-3" fill="#a6cee3"><rect height="3.0e-2" width="3.0000000000000027e-2" x="-0.765" y="-1.5e-2"/><rect height="3.0e-2" width="3.0000000000000027e-2" x="-0.715" y="-0.11952846326765364"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.665" y="-0.21948853110729405"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.615" y="-0.3105114688927061"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.5650000000000001" y="-0.3886191374661522"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.515" y="-0.4503978569087953"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.46499999999999997" y="-0.4931476007338057"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.41500000000000004" y="-0.515"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.36499999999999994" y="-0.515"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.3150000000000001" y="-0.4931476007338059"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.265" y="-0.4503978569087955"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.2150000000000002" y="-0.3886191374661524"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.16499999999999992" y="-0.3105114688927062"/><rect height="3.0000000000000027e-2" width="3.0e-2" x="-0.11500000000000009" y="-0.21948853110729416"/><rect height="3.0e-2" width="3.0e-2" x="-6.500000000000004e-2" y="-0.11952846326765375"/><rect height="3.0e-2" width="3.0e-2" x="-1.5e-2" y="-1.500000000000011e-2"/><rect height="3.0e-2" width="3.0e-2" x="3.5000000000000156e-2" y="8.952846326765325e-2"/><rect height="3.0000000000000027e-2" width="3.0e-2" x="8.499999999999998e-2" y="0.1894885311072937"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.1349999999999998" y="0.28051146889270595"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.18499999999999994" y="0.35861913746615204"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.235" y="0.42039785690879505"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.28500000000000003" y="0.46314760073380556"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.33499999999999963" y="0.4849999999999999"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.3849999999999999" y="0.485"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.43500000000000016" y="0.4631476007338056"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.485" y="0.4203978569087954"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.5349999999999998" y="0.35861913746615237"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.5850000000000001" y="0.28051146889270606"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.6349999999999999" y="0.18948853110729424"/><rect height="3.0e-2" width="3.0000000000000027e-2" x="0.6849999999999999" y="8.95284632676537e-2"/><rect height="3.0e-2" width="3.0000000000000027e-2" x="0.735" y="-1.4999999999999888e-2"/></g></svg>
diff --git a/src/Chart.hs b/src/Chart.hs
--- a/src/Chart.hs
+++ b/src/Chart.hs
@@ -1,13 +1,30 @@
-{-# LANGUAGE PatternSynonyms #-}
+{-# LANGUAGE NoImplicitPrelude #-}
 {-# OPTIONS_GHC -Wall #-}
 
--- | A haskell Charting library targetting SVG
+-- | A haskell Charting library targetting SVGs
 module Chart
-  ( -- $overview
+  ( -- * Usage
+    --
+    -- $setup
+
+    -- * Overview
+    --
+    -- $overview
+
+    -- * Chart
     Chart (..),
+    moveChart,
+    projectXYs,
+    projectXYsWith,
+    projectArcPosition,
+
+    -- * Annotation
     Annotation (..),
     annotationText,
+    scaleAnn,
     padRect,
+
+    -- * Styles
     RectStyle (..),
     defaultRectStyle,
     blob,
@@ -15,41 +32,54 @@
     border,
     TextStyle (..),
     defaultTextStyle,
-    Anchor (..),
-    fromAnchor,
-    toAnchor,
     GlyphStyle (..),
     defaultGlyphStyle,
     GlyphShape (..),
     glyphText,
     LineStyle (..),
     defaultLineStyle,
-    PixelStyle (..),
-    defaultPixelStyle,
-    Direction (..),
-    fromDirection,
-    toDirection,
-    SvgAspect (..),
-    toSvgAspect,
-    fromSvgAspect,
-    EscapeText (..),
-    CssOptions (..),
-    ScaleCharts (..),
-    SvgOptions (..),
-    defaultSvgOptions,
-    defaultSvgFrame,
+    LineCap (..),
+    fromLineCap,
+    toLineCap,
+    LineJoin (..),
+    fromLineJoin,
+    toLineJoin,
+    fromDashArray,
+    Anchor (..),
+    fromAnchor,
+    toAnchor,
+    PathStyle (..),
+    toPathChart,
+    defaultPathStyle,
+
+    -- * Hud types
     ChartDims (..),
     HudT (..),
     Hud,
+    simulHud,
     HudOptions (..),
     defaultHudOptions,
     defaultCanvas,
+    runHudWith,
+    runHud,
+    makeHud,
+    ChartAspect (..),
+    toChartAspect,
+    fromChartAspect,
+    initialCanvas,
+    chartAspectHud,
+    canvas,
+    title,
+    tick,
+
+    -- * Hud primitives
     AxisOptions (..),
     defaultAxisOptions,
+    flipAxis,
     Place (..),
     placeText,
-    Bar (..),
-    defaultBar,
+    AxisBar (..),
+    defaultAxisBar,
     Title (..),
     defaultTitle,
     Tick (..),
@@ -61,141 +91,149 @@
     defaultTickStyle,
     tickStyleText,
     TickExtend (..),
+    adjustTick,
+    makeTickDates,
+    makeTickDatesContinuous,
     Adjustments (..),
     defaultAdjustments,
     LegendOptions (..),
     defaultLegendOptions,
-
-    -- $core
-    dataBox,
-    toAspect,
-    scaleAnn,
-    moveChart,
-
-    -- $hud
-    runHudWith,
-    runHud,
-    makeHud,
-    freezeTicks,
-    flipAxis,
-    canvas,
-    title,
-    tick,
-    adjustTick,
-    makeTickDates,
-    makeTickDatesContinuous,
     legendHud,
-    legendEntry,
-    legendChart,
-    legendFromChart,
+    Orientation (..),
+    fromOrientation,
+    toOrientation,
 
-    -- $svg
-    svg,
-    svgt,
-    chartDef,
-    chartDefs,
-    styleBox,
-    styleBoxes,
-    noStyleBoxes,
-    styleBoxText,
-    styleBoxGlyph,
+    -- * SVG primitives
+    CssOptions (..),
+    SvgOptions (..),
+    defaultSvgOptions,
+    defaultSvgFrame,
+
+    -- * Chart manipulation
     padChart,
     frameChart,
     hori,
     vert,
     stack,
-    addChartBox,
-    addChartBoxes,
 
-    -- * re-exports
-    module Chart.Page,
+    -- * Bounding box calculation
+    padBox,
+    dataBox,
+    dataBoxes,
+    dataBoxesS,
+    styleBox,
+    styleBoxes,
+    styleBoxesS,
+    styleBoxText,
+    styleBoxGlyph,
+
+    -- * Re-exports
     module Chart.Render,
     module Chart.Bar,
-    module Chart.Pixel,
+    module Chart.Surface,
     module Data.Colour,
     module Data.FormatN,
+    module Data.Path,
     module NumHask.Space,
   )
 where
 
 import Chart.Bar
-import Data.FormatN
-import Chart.Page
-import Chart.Pixel
 import Chart.Render
+import Chart.Surface
 import Chart.Types
 import Data.Colour
+import Data.FormatN
+import Data.Path
 import NumHask.Space
 
 -- $setup
 --
+-- >>> import Chart
+--
+-- chart-svg works well with "NumHask.Prelude" and "Control.Lens" but neither are necessary.
+--
 -- >>> :set -XOverloadedLabels
 -- >>> :set -XNoImplicitPrelude
--- >>> -- import NumHask.Prelude
 -- >>> import Control.Lens
+-- >>> import NumHask.Prelude
 
 -- $overview
 --
--- A chart consists of related conceptual layers:
+-- Charting consists of three highly-coupled conceptual layers:
 --
--- 1. the data to be represented
--- 2. the manifestation of the data on the screen
--- 3. visual aids to help interpret the data, such as axes, gridlines and titles.
+-- 1. the data to be represented.
+-- 2. how the data will be represented on a screen, and.
+-- 3. the creation of visual aids that help interpret the data; such as axes, gridlines and titles.
 --
--- >>> :t Chart
--- Chart :: Annotation -> [XY a] -> Chart a
+-- == What is a 'Chart'?
 --
--- A 'Chart' in this library specifically consists of
+-- A 'Chart' in this library consists of a specification of the first two items in the above list; data and data annotation.
 --
--- - a list of values, either 2D points or rectangles (unified as a 'XY')
+-- - 'XY': a list of values, specified as either 2D points or rectangles.
 --
--- - an 'Annotation', which describes the way that the data should be represented on a 2-dimensional plane.
+-- - 'Annotation': a description of how the data should be represented on the screen.
 --
--- What exactly is annotation and what is data is highly variant within charting practice. This construction treats position on a plane differently from other quantitative manifestations such as color and size. The chief advantage of priveliging XY position is that scaling and integrating data with other chart elements becomes much easier. The disadvantage is that, to use quantitative tools such as size, data needs to be consciously separated into that which is position orientated, and that which is defined as 'Annotation'.
+-- >>> :t Chart
+-- Chart :: Annotation -> [XY a] -> Chart a
 --
+-- What exactly is annotation and what is data is highly variant within charting practice. This construction treats position on the XY plane differently from other quantitative manifests such as color and size. The chief advantage of priveliging XY position is that scaling and integrating data with other chart elements becomes much easier. The disadvantage is that, to use quantitative tools such as size, data needs to be consciously separated into that which is position-orientated, and that which is defined as 'Annotation'.
 --
--- Here's some data:
 --
--- >>> :{
---  let ls = fmap (uncurry P) <$>
---           [ [(0.0, 1.0), (1.0, 1.0), (2.0, 5.0 :: Double)],
---             [(0.0, 0.0), (3.0, 3.0)],
---             [(0.5, 4.0), (0.5, 0)] ]
---  :}
+-- Here's some data; three lists of points that will form a line:
 --
+-- >>> let xs = [[(0.0, 1.0), (1.0, 1.0), (2.0, 5.0)], [(0.0, 0.0), (3.2, 3.0)], [(0.5, 4.0), (0.5, 0)]] :: [[(Double, Double)]]
+-- >>> let ls = fmap (uncurry P) <$> xs
+--
 -- >>> :t ls
 -- ls :: [[XY Double]]
 --
--- and an Annotation to describe representation of this data.
+-- and an Annotation to describe representation of this data; three line styles with different colors and widths:
 --
--- >>> :{
---  let anns = LineA <$>
---             [ defaultLineStyle & #color .~ (palette1 !! 0) & #width .~ 0.015,
---               defaultLineStyle & #color .~ (palette1 !! 1) & #width .~ 0.03,
---               defaultLineStyle & #color .~ (palette1 !! 5) & #width .~ 0.01
---             ]
---  :}
+-- >>> let anns = zipWith (\w c -> LineA (LineStyle w c Nothing Nothing Nothing Nothing)) [0.015, 0.03, 0.01] palette1
 --
--- and this is enough to put together a Chart.
+-- and this is enough to create a Chart.
 --
--- >>> let lines = zipWith Chart anns ls
--- >>> :t lines
--- lines :: [Chart Double]
+-- >>> let lineChart = zipWith Chart anns ls
+-- >>> :t lineChart
+-- lineChart :: [Chart Double]
 --
--- Most charts will, in reality, be a list of charts, and much of the library API is designed for this.
+-- Most charts will, in reality, be a list of charts such as this, and much of the library API is designed for this.
 --
--- > writeCharts "other/lines.svg" lines
+-- > writeChartSvgDefault "other/lines.svg" lineChart
 --
 -- ![lines example](other/lines.svg)
 --
--- Physical, on-the-page representations of data is separate to need to be considered separately to the domain of the data itself but their concerns bleed into each other. An axis on a chart needs to know the range of the data to render a tick value.
+-- chart-svg takes inspiration from gaming heads-up display aesthetics. Chart decorations such as titles and axes are tools to interpret the landscape of data being viewed. They should be readily transparent, have sane defaults but be fully configurable.
 --
--- > writeHudOptionsChart "other/linehud.svg" defaultSvgOptions defaultHudOptions [] lines
+-- The library considers a hud to be a recipe for the creation of a 'Chart' list, but with the physical, on-the-page representation of the data in mind.
 --
--- ![hud example](other/linehud.svg)
+-- Here is the line chart presented with default hud options.
 --
--- chart-svg takes inspiration from gaming heads-up display aesthetics. Chart decorations such as titles and axes are tools to interpret the landscape of data being viewed, should be readily transparent, have sane defaults but be fully configurable.
+-- > writeChartSvgHud "other/lineshud.svg" lineChart
 --
--- The library considers a hud to be a recipe for the creation of a 'Chart' list, in the domain of the viewbox of an svg file or similar conception.
+-- ![hud example](other/lineshud.svg)
 --
--- Being charts all the way down creates a direct mapping between a chart and its representation. The best way to understand this would be to run the example app, which serves a websocket receiving chart options and updating a chart.
+-- 'Hud' creation is a process of integrating the data domain and the physical representation. In the chart above, for example, the axis placement takes into account the physical attributes of the thick blue line which extends slightly beyond the abstract data range. The data area (the canvas) has also been extended so that a tick value (3.5 on the x-axis) can be included.
+--
+-- Beyond this, there is nothing special about hud elements such as tick marks and titles, axes. Once they are created (with 'runHudWith') they themselves become charts.
+--
+
+-- $hud
+--
+-- Axes, titles, tick marks, grid lines and legends are chart elements that exist to provide references for the viewer that helps explain the data that is being represented by the chart. They can be clearly distinguished from data representations such as a mark where a value is.
+--
+-- Apart from this, hud elements are pretty much the same as data elements. They simulateously have two reference frames: a data domain (tick values reference the data value range) and a page domain (a title needs to be placed on the left say, and has a size of 0.1 versus the page size). They are also typically composed of the same sorts of primitives as data elements, such as rectangles and lines and text and colors.
+--
+-- Given this similarity, an efficient process for chart creation is roughly:
+--
+-- - collect the chart data and data annotations into a [Chart Double]
+--
+-- - measure the range of the data values
+--
+-- - begin a process of folding a [Hud Double] in with the charts, supplying the the data values to the hud elements if needed, and keeping track of the overall page size of the chart.
+--
+-- This process is encapsulated in 'runHud'.
+--
+-- An important quality of 'runHud' (and conversion of charts to svg in general)is that this is the point at which the 'XY's of the chart are converted from the data domain to the page domain. Once the hud and the chart has been integrated there is no going back and the original data is forgotten. This is an opinionated aspect of chart-svg. A counter-example is d3 which stores the raw data in the svg element it represents.
+
diff --git a/src/Chart/Bar.hs b/src/Chart/Bar.hs
--- a/src/Chart/Bar.hs
+++ b/src/Chart/Bar.hs
@@ -30,12 +30,19 @@
 -- $setup
 --
 -- >>> :set -XOverloadedLabels
+-- >>> :set -XOverloadedStrings
 -- >>> :set -XNoImplicitPrelude
--- >>> -- import NumHask.Prelude
+-- >>> import NumHask.Prelude
+-- >>> import Chart
 -- >>> import Control.Lens
 
--- | the usual bar chart eye-candy
+-- | Typical bar chart options.
 --
+-- >>> let barDataExample = BarData [[1, 2, 3, 5, 8, 0, -2, 11, 2, 1], [1 .. 10]] (Just (("row " <>) . pack . show <$> [1 .. 11])) (Just (("column " <>) . pack . show <$> [1 .. 2]))
+-- >>> let (ho, cs) = barChart defaultBarOptions barDataExample
+--
+-- > writeChartSvg "other/bar.svg" (ChartSvg defaultSvgOptions ho [] cs)
+--
 -- ![bar chart example](other/bar.svg)
 data BarOptions
   = BarOptions
@@ -48,7 +55,7 @@
         displayValues :: Bool,
         valueFormatN :: FormatN,
         accumulateValues :: Bool,
-        barOrientation :: Direction,
+        barOrientation :: Orientation,
         barHudOptions :: HudOptions
       }
   deriving (Show, Eq, Generic)
@@ -70,21 +77,20 @@
     ( defaultHudOptions
         & #hudAxes
           .~ [ defaultAxisOptions
-                 & #atick . #ltick .~ Nothing,
+                 & #axisTick . #ltick .~ Nothing,
                defaultAxisOptions & #place .~ PlaceLeft
              ]
         & #hudTitles .~ []
         & #hudLegend
-          .~ Just
-            ( defaultLegendOptions
-                & #lplace .~ PlaceRight
-                & #lsize .~ 0.12
-                & #vgap .~ 0.4
-                & #hgap .~ 0.14
-                & #ltext . #size .~ 0.12
-                & #lscale .~ 0.4,
-              []
-            )
+          ?~ ( defaultLegendOptions
+                 & #lplace .~ PlaceRight
+                 & #lsize .~ 0.12
+                 & #vgap .~ 0.4
+                 & #hgap .~ 0.14
+                 & #ltext . #size .~ 0.12
+                 & #lscale .~ 0.4,
+               []
+             )
     )
   where
     gs = (\x -> RectStyle 0.002 x x) <$> palette1
@@ -92,7 +98,7 @@
 
 -- | imagine a dataframe you get in other languages:
 --
--- - definietly some [[Double]]
+-- - definitely some [[Double]]
 --
 -- - maybe some row names
 --
@@ -109,8 +115,6 @@
 --
 -- >>> barRects defaultBarOptions [[1,2],[2,3]]
 -- [[Rect 5.0e-2 0.45 0.0 1.0,Rect 1.05 1.4500000000000002 0.0 2.0],[Rect 0.45 0.8500000000000001 0.0 2.0,Rect 1.4500000000000002 1.85 0.0 3.0]]
---
--- FIXME: slows!
 barRects ::
   BarOptions ->
   [[Double]] ->
@@ -163,7 +167,7 @@
 -- | A bar chart without hud trimmings.
 --
 -- >>> bars defaultBarOptions (BarData [[1,2],[2,3]] Nothing Nothing)
--- [Chart {annotation = RectA (RectStyle {borderSize = 2.0e-3, borderColor = RGBA 0.65 0.81 0.89 1.00, color = RGBA 0.65 0.81 0.89 1.00}), xys = [RectXY Rect 5.0e-2 0.45 0.0 1.0,RectXY Rect 1.05 1.4500000000000002 0.0 2.0]},Chart {annotation = RectA (RectStyle {borderSize = 2.0e-3, borderColor = RGBA 0.12 0.47 0.71 1.00, color = RGBA 0.12 0.47 0.71 1.00}), xys = [RectXY Rect 0.45 0.8500000000000001 0.0 2.0,RectXY Rect 1.4500000000000002 1.85 0.0 3.0]},Chart {annotation = BlankA, xys = [RectXY Rect -5.0e-2 1.9500000000000002 0.0 3.0]}]
+-- [Chart {annotation = RectA (RectStyle {borderSize = 2.0e-3, borderColor = RGBA 0.65 0.81 0.89 1.00, color = RGBA 0.65 0.81 0.89 1.00}), xys = [R 5.0e-2 0.45 0.0 1.0,R 1.05 1.4500000000000002 0.0 2.0]},Chart {annotation = RectA (RectStyle {borderSize = 2.0e-3, borderColor = RGBA 0.12 0.47 0.71 1.00, color = RGBA 0.12 0.47 0.71 1.00}), xys = [R 0.45 0.8500000000000001 0.0 2.0,R 1.4500000000000002 1.85 0.0 3.0]},Chart {annotation = BlankA, xys = [R -5.0e-2 1.9500000000000002 0.0 3.0]}]
 bars :: BarOptions -> BarData -> [Chart Double]
 bars bo bd =
   zipWith (\o d -> Chart (RectA o) d) (bo ^. #barRectStyles) (fmap RectXY <$> barRects bo (bd ^. #barData)) <> [Chart BlankA [RectXY (Rect (x - (bo ^. #outerGap)) (z + (bo ^. #outerGap)) y w)]]
@@ -183,7 +187,7 @@
 -- | sensible ticks
 barTicks :: BarData -> TickStyle
 barTicks bd
-  | bd ^. #barData == [] = TickNone
+  | null (bd ^. #barData) = TickNone
   | isNothing (bd ^. #barRowLabels) =
     TickLabels $ pack . show <$> [0 .. (maxRows (bd ^. #barData) - 1)]
   | otherwise =
@@ -192,12 +196,12 @@
 
 tickFirstAxis :: BarData -> [AxisOptions] -> [AxisOptions]
 tickFirstAxis _ [] = []
-tickFirstAxis bd (x : xs) = (x & #atick . #tstyle .~ barTicks bd) : xs
+tickFirstAxis bd (x : xs) = (x & #axisTick . #tstyle .~ barTicks bd) : xs
 
 -- | bar legend
 barLegend :: BarData -> BarOptions -> [(Annotation, Text)]
 barLegend bd bo
-  | bd ^. #barData == [] = []
+  | null (bd ^. #barData) = []
   | isNothing (bd ^. #barColumnLabels) = []
   | otherwise = zip (RectA <$> bo ^. #barRectStyles) $ take (length (bd ^. #barData)) $ fromMaybe [] (bd ^. #barColumnLabels) <> repeat ""
 
@@ -210,7 +214,7 @@
     bars bo bd <> bool [] (barTextCharts bo bd) (bo ^. #displayValues)
   )
 
-flipAllAxes :: Direction -> [AxisOptions] -> [AxisOptions]
+flipAllAxes :: Orientation -> [AxisOptions] -> [AxisOptions]
 flipAllAxes o = fmap (bool id flipAxis (o == Vert))
 
 barDataTP :: Bool -> FormatN -> Double -> Double -> [[Double]] -> [[(Text, Double)]]
diff --git a/src/Chart/Examples.hs b/src/Chart/Examples.hs
--- a/src/Chart/Examples.hs
+++ b/src/Chart/Examples.hs
@@ -1,66 +1,89 @@
-{-# LANGUAGE DeriveGeneric #-}
 {-# LANGUAGE OverloadedLabels #-}
 {-# LANGUAGE OverloadedStrings #-}
-{-# LANGUAGE NoImplicitPrelude #-}
+{-# LANGUAGE RebindableSyntax #-}
+{-# LANGUAGE NegativeLiterals #-}
 {-# OPTIONS_GHC -Wall #-}
+{-# OPTIONS_GHC -fno-warn-name-shadowing #-}
 {-# OPTIONS_GHC -fno-warn-type-defaults #-}
 
-module Chart.Examples where
+-- | Examples of chart construction.
+module Chart.Examples
+  ( unitExample,
+    svgOptionsExample,
+    hudOptionsExample,
+    rectExample,
+    textExample,
+    glyphsExample,
+    lineExample,
+    barDataExample,
+    barExample,
+    waveExample,
+    lglyphExample,
+    glinesExample,
+    compoundExample,
+    boundTextBugExample,
+    labelExample,
+    legendExample,
+    surfaceExample,
+    arrowgExample,
+    surfacegExample,
+    rosenbrock,
+    arcExample,
+    arcFlagsExample,
+    ellipseExample,
+    quadExample,
+    cubicExample,
+    pathExample,
+    vennExample,
+    problematic1,
+    problematic2,
+    writeAllExamples,
+  )
+where
 
 import Chart
 import Control.Lens
 import Data.List ((!!))
 import qualified Data.Text as Text
-import NumHask.Prelude
-import Web.Rep
-
-data Ex
-  = Ex
-      { excss :: SvgOptions,
-        exhc :: HudOptions,
-        exmaxcs :: Int,
-        exanns :: [Annotation],
-        exxys :: [[XY Double]]
-      }
-  deriving (Eq, Show, Generic)
-
-makeExample :: HudOptions -> [Chart Double] -> Ex
-makeExample hs cs = Ex defaultSvgOptions hs (length cs) (view #annotation <$> cs) (fmap (fmap realToFrac) . view #xys <$> cs)
-
-repEx :: (Monad m) => Ex -> SharedRep m (Text, Text)
-repEx (Ex css hc maxcs anns xs) =
-  repChartsWithStaticData css hc maxcs (zipWith Chart anns xs)
-
-writeChartExample :: FilePath -> Ex -> IO ()
-writeChartExample fp (Ex css' hc' _ anns' xys') =
-  writeHudOptionsChart fp css' hc' [] (zipWith Chart anns' xys')
-
--- | minimal example
-memptyExample :: Ex
-memptyExample = Ex defaultSvgOptions mempty 1 [] []
+import NumHask.Prelude hiding (lines)
 
 -- | unit example
-unitExample :: Ex
-unitExample = Ex defaultSvgOptions mempty 1 [RectA defaultRectStyle] [[one]]
+--
+-- ![unit example](other/unit.svg)
+unitExample :: ChartSvg
+unitExample = mempty & #chartList .~ [Chart (RectA defaultRectStyle) [one]]
 
--- | hud example
-hudExample :: Ex
-hudExample = Ex defaultSvgOptions defaultHudOptions 1 [] []
+-- | 'HudOptions' example
+--
+-- ![hudoptions example](other/hudoptions.svg)
+hudOptionsExample :: ChartSvg
+hudOptionsExample =
+  mempty
+    & #hudOptions .~ defaultHudOptions
+    & #chartList .~ [Chart BlankA [one]]
 
+-- | 'SvgOptions' example.
+--
+-- ![svgoptions example](other/svgoptions.svg)
+svgOptionsExample :: ChartSvg
+svgOptionsExample =
+  mempty
+    & #svgOptions %~ #chartAspect .~ FixedAspect 0.7
+    & #chartList .~ zipWith (\s d -> Chart (LineA s) (fmap PointXY d)) lopts ls
+
 -- | rect example
-rectExample :: Ex
+--
+-- ![rect example](other/rect.svg)
+rectExample :: ChartSvg
 rectExample =
-  Ex
-    defaultSvgOptions
-    (defaultHudOptions & set #hudAxes [defaultAxisOptions])
-    2
-    (RectA <$> ropts)
-    (fmap RectXY <$> rss)
+  mempty
+    & #hudOptions .~ (defaultHudOptions & #hudAxes .~ [defaultAxisOptions])
+    & #chartList .~ zipWith Chart (RectA <$> ropts) (fmap RectXY <$> rss)
 
 rss :: [[Rect Double]]
 rss =
-  [ gridR (\x -> exp (- (x ** 2) / 2)) (Range (-5) 5) 50,
-    gridR (\x -> 0.5 * exp (- (x ** 2) / 8)) (Range (-5) 5) 50
+  [ gridR (\x -> exp (- (x ** 2) / 2)) (Range -5 5) 50,
+    gridR (\x -> 0.5 * exp (- (x ** 2) / 8)) (Range -5 5) 50
   ]
 
 ropts :: [RectStyle]
@@ -70,18 +93,18 @@
   ]
 
 -- | line example
-lineExample :: Ex
+--
+-- ![line example](other/line.svg)
+lineExample :: ChartSvg
 lineExample =
-  Ex
-    defaultSvgOptions
-    ( exampleLineHudOptions
-        "Line Chart"
-        (Just "An example from chart-svg")
-        (Just (legopts, zip (LineA <$> lopts) ["hockey", "line", "vertical"]))
-    )
-    3
-    (LineA <$> lopts)
-    (fmap PointXY <$> ls)
+  mempty
+    & #hudOptions
+    .~ exampleLineHudOptions
+           "Line Chart"
+           (Just "An example from chart-svg")
+           (Just (legopts, zip (LineA <$> lopts) ["hockey", "line", "vertical"]))
+    & #chartList
+    .~ zipWith (\s d -> Chart (LineA s) (fmap PointXY d)) lopts ls
 
 ls :: [[Point Double]]
 ls =
@@ -105,7 +128,7 @@
     & #ltext . #size .~ 0.25
     & #innerPad .~ 0.05
     & #lscale .~ 0.25
-    & #lplace .~ PlaceAbsolute (Point 0.5 (-0.3))
+    & #lplace .~ PlaceAbsolute (Point 0.5 -0.3)
 
 exampleLineHudOptions :: Text -> Maybe Text -> Maybe (LegendOptions, [(Annotation, Text)]) -> HudOptions
 exampleLineHudOptions t1 t2 legends' =
@@ -128,14 +151,15 @@
     & #hudLegend .~ legends'
 
 -- | text example
-textExample :: Ex
+--
+-- ![text example](other/text.svg)
+textExample :: ChartSvg
 textExample =
-  Ex
-    defaultSvgOptions
-    defaultHudOptions
-    26
-    (TextA (defaultTextStyle & (#size .~ (0.05 :: Double))) . (: []) . fst <$> ts)
-    ((: []) . PointXY . snd <$> ts)
+  mempty & #chartList
+    .~ zipWith
+      Chart
+      (TextA (defaultTextStyle & (#size .~ (0.05 :: Double))) . (: []) . fst <$> ts)
+      ((: []) . PointXY . snd <$> ts)
   where
     ts :: [(Text, Point Double)]
     ts =
@@ -143,66 +167,66 @@
         (fmap Text.singleton ['a' .. 'y'])
         [Point (sin (x * 0.1)) x | x <- [0 .. 25]]
 
--- | glyph example
-glyphExample :: Ex
-glyphExample = makeExample mempty glyphs
-
-glyphs :: [Chart Double]
-glyphs =
-  zipWith
-    ( \(sh, bs) p ->
-        Chart
-          ( GlyphA
-              ( defaultGlyphStyle
-                  & #size .~ (0.1 :: Double)
-                  & #borderSize .~ bs
-                  & #shape .~ sh
-              )
-          )
-          [p]
-    )
-    [ (CircleGlyph, 0.01 :: Double),
-      (SquareGlyph, 0.01),
-      (RectSharpGlyph 0.75, 0.01),
-      (RectRoundedGlyph 0.75 0.01 0.01, 0.01),
-      (EllipseGlyph 0.75, 0),
-      (VLineGlyph 0.005, 0.01),
-      (HLineGlyph 0.005, 0.01),
-      (TriangleGlyph (Point 0.0 0.0) (Point 1 1) (Point 1 0), 0.01),
-      (PathGlyph "M0.05,-0.03660254037844387 A0.1 0.1 0.0 0 1 0.0,0.05 0.1 0.1 0.0 0 1 -0.05,-0.03660254037844387 0.1 0.1 0.0 0 1 0.05,-0.03660254037844387 Z", 0.01)
-    ]
-    [P x 0 | x <- [0 .. (8 :: Double)]]
+-- | glyphs example
+--
+-- ![glyphs example](other/glyphs.svg)
+glyphsExample :: ChartSvg
+glyphsExample =
+  mempty &
+  #svgOptions . #svgHeight .~ 50 &
+  #chartList
+    .~ zipWith
+      ( \(sh, bs) p ->
+          Chart
+            ( GlyphA
+                ( defaultGlyphStyle
+                    & #size .~ (0.1 :: Double)
+                    & #borderSize .~ bs
+                    & #shape .~ sh
+                )
+            )
+            [p]
+      )
+      [ (CircleGlyph, 0.01 :: Double),
+        (SquareGlyph, 0.01),
+        (RectSharpGlyph 0.75, 0.01),
+        (RectRoundedGlyph 0.75 0.01 0.01, 0.01),
+        (EllipseGlyph 0.75, 0),
+        (VLineGlyph 0.005, 0.01),
+        (HLineGlyph 0.005, 0.01),
+        (TriangleGlyph (Point 0.0 0.0) (Point 1 1) (Point 1 0), 0.01),
+        (PathGlyph "M0.05,-0.03660254037844387 A0.1 0.1 0.0 0 1 0.0,0.05 0.1 0.1 0.0 0 1 -0.05,-0.03660254037844387 0.1 0.1 0.0 0 1 0.05,-0.03660254037844387 Z", 0.01)
+      ]
+      [P x 0 | x <- [0 .. (8 :: Double)]]
 
--- | bar example
+-- | Example data for Bar chart
 barDataExample :: BarData
 barDataExample =
   BarData
     [[1, 2, 3, 5, 8, 0, -2, 11, 2, 1], [1 .. 10]]
-    (Just (("row " <>) . pack . show <$> [1 .. 11]))
-    (Just (("column " <>) . pack . show <$> [1 .. 2]))
+    (Just (("row " <>) . pack . show <$> ([1 .. 11]::[Int])))
+    (Just (("column " <>) . pack . show <$> ([1 .. 2]::[Int])))
 
-barExample :: Ex
-barExample = makeExample hc cs
+-- | Bar chart example.
+--
+-- ![bar example](other/bar.svg)
+barExample :: ChartSvg
+barExample = mempty & #hudOptions .~ hc & #chartList .~ cs
   where
     (hc, cs) = barChart defaultBarOptions barDataExample
 
--- | pixel example
-pixelEx :: ([Chart Double], [Hud Double])
-pixelEx = pixelfl f1 (defaultPixelOptions & #poGrain .~ Point 100 100 & #poRange .~ Rect 1 2 1 2) (defaultPixelLegendOptions "pixel test")
-
-f1 :: (TrigField a) => Point a -> a
-f1 (Point x y) = sin (cos (tan x)) * sin (cos (tan y))
-
--- * stuff
-
-boundTextBug :: [Chart Double]
-boundTextBug =
-  [ t1,
-    t2,
-    Chart BlankA [R 0 0.1 (-0.5) 0.5],
-    Chart (RectA defaultRectStyle) [RectXY (fixRect $ styleBox t1)],
-    Chart (RectA defaultRectStyle) [RectXY (fixRect $ styleBox t2)]
-  ]
+-- | An example of how bounding box calculations for text is broken.
+--
+-- ![bound text bug example](other/boundtextbug.svg)
+boundTextBugExample :: ChartSvg
+boundTextBugExample =
+  mempty & #chartList
+    .~ [ t1,
+         t2,
+         Chart BlankA [R 0 0.1 -0.5 0.5],
+         Chart (RectA defaultRectStyle) [RectXY (padBox $ styleBox t1)],
+         Chart (RectA defaultRectStyle) [RectXY (padBox $ styleBox t2)]
+       ]
   where
     t1 =
       Chart
@@ -234,8 +258,11 @@
     palette1
     [EllipseGlyph 1.5, SquareGlyph, CircleGlyph]
 
-glines :: [Chart Double]
-glines = cs <> gs
+-- | Glyph + Lines
+--
+-- ![glines example](other/glines.svg)
+glinesExample :: ChartSvg
+glinesExample = mempty & #chartList .~ (cs <> gs)
   where
     cs = zipWith (\d s -> Chart (LineA s) (PointXY <$> d)) ls lopts
     gs = zipWith (\d s -> Chart (GlyphA s) (PointXY <$> d)) ls gopts3
@@ -245,8 +272,11 @@
   (\p@(Point x y) -> (pack (show x <> "," <> show y), fromIntegral <$> p))
     <$> (Point <$> [0 .. 5] <*> [0 .. 5] :: [Point Int])
 
-lglyph :: [Chart Double]
-lglyph = txt <> gly
+-- | Labelled Glyphs
+--
+-- ![lglyph example](other/lglyph.svg)
+lglyphExample :: ChartSvg
+lglyphExample = mempty & #chartList .~ (txt <> gly)
   where
     txt =
       ( \(t, p) ->
@@ -275,37 +305,36 @@
       )
         <$> (snd <$> lgdata)
 
--- | label example
-labelExample :: Ex
-labelExample =
-  Ex
-    defaultSvgOptions
-    defaultHudOptions
-    1
-    (annotation <$> label)
-    (xys <$> label)
-
-placedLabel :: (Real a) => Point a -> a -> Text -> Chart a
-placedLabel p d t =
-  Chart (TextA (defaultTextStyle & #rotation ?~ realToFrac d) [t]) [PointXY p]
+-- | mappend of lglyph and glines examples
+--
+-- ![compound example](other/compound.svg)
+compoundExample :: ChartSvg
+compoundExample = lglyphExample <> glinesExample
 
-label :: [Chart Double]
-label =
-  [placedLabel (Point (1.0 :: Double) 1.0) (45.0 :: Double) "text at (1,1) rotated by 45 degrees"]
+-- | label example.
+--
+-- ![label example](other/label.svg)
+labelExample :: ChartSvg
+labelExample =
+  mempty & #chartList
+    .~ [Chart (TextA (defaultTextStyle & #rotation ?~ -pi/4) ["text at (1,1) rotated by -(pi/4) radians"]) [PointXY (Point 1.0 1.0)]]
 
 -- | legend test
-legendTest :: HudOptions
-legendTest =
-  defaultHudOptions
-    & #hudLegend
-    .~ Just
-      ( defaultLegendOptions
-          & #lscale .~ 0.3
-          & #lplace .~ PlaceAbsolute (Point 0.0 0.0)
-          & #lsize .~ 0.12
-          & #ltext . #size .~ 0.16,
-        l1
-      )
+--
+-- ![legend example](other/legend.svg)
+legendExample :: ChartSvg
+legendExample =
+  mempty & #hudOptions
+    .~ ( defaultHudOptions
+           & #hudLegend
+           ?~ ( defaultLegendOptions
+                  & #lscale .~ 0.3
+                  & #lplace .~ PlaceAbsolute (Point 0.0 0.0)
+                  & #lsize .~ 0.12
+                  & #ltext . #size .~ 0.16,
+                l1
+              )
+       )
   where
     l1 =
       [ (GlyphA defaultGlyphStyle, "glyph"),
@@ -316,41 +345,454 @@
         (BlankA, "blank")
       ]
 
--- | main example
-mainExample :: Ex
-mainExample =
-  makeExample
-    defaultHudOptions
-    [Chart (GlyphA defaultGlyphStyle) (PointXY <$> gridP sin (Range 0 (2 * pi)) 30)]
+-- | wave example
+--
+-- ![wave example](other/wave.svg)
+waveExample :: ChartSvg
+waveExample = mempty & #chartList .~ [Chart (GlyphA defaultGlyphStyle) (PointXY <$> gridP sin (Range 0 (2 * pi)) 30)]
 
+-- | venn diagram
+--
+-- ![venn diagram](other/venn.svg)
+vennExample :: ChartSvg
+vennExample =
+  mempty &
+  #chartList .~ zipWith (\c x -> Chart (PathA (defaultPathStyle & #color .~ setOpac 0.2 c) (fst <$> x)) (PointXY . snd <$> x)) palette1 (toPathXYs . parsePath <$> vennSegs) &
+  #svgOptions .~ (defaultSvgOptions & #chartAspect .~ FixedAspect 1) &
+  #hudOptions .~ defaultHudOptions
+
+{-
+These were originally based on:
+
+    [ ("origin", Point 0 0), -- origin
+      ("circle1", Point 0.5 (-0.5 + cos (pi / 6))), -- center of circle 1
+      ("circle2", Point 0 -0.5), -- center of circle 2
+      ("circle3", Point -0.5 (-0.5 + cos (pi / 6))), -- center of circle 3
+      ("corner1", Point 0 (-0.5 + 2 * cos (pi / 6))), -- corner 1
+      ("corner2", Point 1 -0.5), -- corner 2
+      ("corner3", Point -1 -0.5) -- corner 3
+    ]
+-}
+vennSegs :: [Text]
+vennSegs =
+      [ "M0.0,-1.2320508075688774 A0.5 0.5 0.0 1 1 1.0,0.5 1.0 1.0 0.0 0 0 0.5,-0.3660254037844387 1.0 1.0 0.0 0 0 0.0,-1.2320508075688774 Z",
+        "M-1.0,0.5 A0.5 0.5 0.0 1 0 1.0,0.5 1.0 1.0 0.0 0 1 0.0,0.5 1.0 1.0 0.0 0 1 -1.0,0.5 Z",
+        "M-1.0,0.5 A0.5 0.5 0.0 1 1 0.0,-1.2320508075688774 1.0 1.0 0.0 0 0 -0.5,-0.3660254037844387 1.0 1.0 0.0 0 0 -1.0,0.5 Z",
+        "M0.5,-0.3660254037844387 A1.0 1.0 0.0 0 1 1.0,0.5 1.0 1.0 0.0 0 1 0.0,0.5 1.0 1.0 0.0 0 0 0.5,-0.3660254037844387 Z",
+        "M0.0,0.5 A1.0 1.0 0.0 0 1 -1.0,0.5 1.0 1.0 0.0 0 1 -0.5,-0.3660254037844387 1.0 1.0 0.0 0 0 0.0,0.5 Z",
+        "M0.0,-1.2320508075688774 A1.0 1.0 0.0 0 1 0.5,-0.3660254037844387 1.0 1.0 0.0 0 0 -0.5,-0.3660254037844387 1.0 1.0 0.0 0 1 0.0,-1.2320508075688774 Z",
+        "M0.5,-0.3660254037844387 A1.0 1.0 0.0 0 1 0.0,0.5 1.0 1.0 0.0 0 1 -0.5,-0.3660254037844387 1.0 1.0 0.0 0 1 0.5,-0.3660254037844387 Z"
+      ]
+
+-- | Compound path example.
+--
+-- ![path test](other/path.svg)
+pathExample :: ChartSvg
+pathExample =
+  mempty &
+   #chartList .~ [path', c0] &
+   #hudOptions .~ defaultHudOptions &
+   #svgOptions %~
+   ((#outerPad ?~ 0.1) .
+    (#chartAspect .~ ChartAspect))
+  where
+    ps =
+      [
+        (StartI, Point 0 0),
+        (LineI, Point 1 0),
+        (CubicI (Point 0.2 0) (Point 0.25 1), Point 1 1),
+        (QuadI (Point -1 2), Point 0 1),
+        (ArcI (ArcInfo (Point 1 1) (-pi/6) False False), Point 0 0)
+      ]
+    path' = Chart (PathA (defaultPathStyle & #color .~ setOpac 0.1 (palette1!!2) & #borderColor .~ Colour 0.2 0.8 0.4 0.3) (fst <$> ps)) (PointXY . snd <$> ps)
+    c0 = Chart (GlyphA defaultGlyphStyle) (PointXY . snd <$> ps)
+
+-- | ellipse example
+--
+-- (ArcPosition (Point 1 0) (Point 0 1) (ArcInfo (Point 1.5 1) (pi/3) True True))
+--
+--
+-- ![ellipse example](other/ellipse.svg)
+--
+ellipseExample :: ArcPosition Double -> ChartSvg
+ellipseExample p@(ArcPosition p1 p2 _) =
+  mempty &
+   #chartList .~ [ell, ellFull, c0, bbox, xradii, yradii] &
+   #hudOptions .~ defaultHudOptions &
+   #svgOptions %~ ((#outerPad .~ Nothing) . (#chartAspect .~ UnadjustedAspect))
+  where
+    (ArcCentroid c r phi' ang0 angd) = arcCentroid p
+    ellFull = Chart (LineA $ defaultLineStyle & #width .~ 0.002 & #color .~ (palette1!!1)) (PointXY . ellipse c r phi' . (\x -> 2 * pi * x / 100.0) <$> [0..100])
+    ell = Chart (LineA $ defaultLineStyle & #width .~ 0.002 & #color .~ (palette1!!1)) (PointXY . ellipse c r phi' . (\x -> ang0 + angd * x / 100.0) <$> [0..100])
+    c0 = Chart (GlyphA defaultGlyphStyle) (PointXY <$> [c,p1,p2])
+    bbox = Chart (RectA $ defaultRectStyle & #borderSize .~ 0.002 & #color .~ Colour 0.4 0.4 0.8 0.1 & #borderColor .~ Colour 0.5 0.5 0.5 1) [RectXY (arcBox p)]
+    xradii = Chart (LineA $ defaultLineStyle & #color .~ Colour 0.9 0.2 0.02 1 & #width .~ 0.005 & #dasharray .~ Just [0.03, 0.01] & #linecap .~ Just LineCapRound) (PointXY <$> [ellipse c r phi' 0, ellipse c r phi' pi])
+    yradii = Chart (LineA $ defaultLineStyle & #color .~ Colour 0.9 0.9 0.02 1 & #width .~ 0.005 & #dasharray .~ Just [0.03, 0.01] & #linecap .~ Just LineCapRound) (PointXY <$> [ellipse c r phi' (pi/2), ellipse c r phi' (3/2*pi)])
+
+-- | arc example
+--
+-- > arcExample (ArcPosition (Point 1.0 0.0) (Point 0.0 1.0) (ArcInfo (Point 1.0 0.5) 0 False True))
+--
+-- ![arc example](other/arc.svg)
+--
+-- See also 'problematic2' for scaling issue when phi is non-zero.
+--
+arcExample :: ArcPosition Double -> ChartSvg
+arcExample p1 =
+  mempty &
+   #chartList .~ [arc, ell, c0, bbox] &
+   #hudOptions .~ defaultHudOptions &
+   #svgOptions %~ ((#outerPad .~ Nothing) . (#chartAspect .~ FixedAspect 1))
+  where
+    ps = singletonArc p1
+    (ArcCentroid c r phi' ang0 angd) = arcCentroid p1
+    arc = Chart (PathA (defaultPathStyle & #color .~ setOpac 0.1 (palette1!!2) & #borderColor .~ transparent) (fst <$> ps)) (PointXY . snd <$> ps)
+    ell = Chart (LineA $ defaultLineStyle & #width .~ 0.002 & #color .~ (palette1!!1)) (PointXY . ellipse c r phi' . (\x -> ang0 + angd * x / 100.0) <$> [0..100])
+    c0 = Chart (GlyphA defaultGlyphStyle) [PointXY c]
+    bbox = Chart (RectA $ defaultRectStyle & #borderSize .~ 0.002 & #color .~ Colour 0.4 0.4 0.8 0.1 & #borderColor .~ Colour 0.5 0.5 0.5 1) [RectXY (arcBox p1)]
+
+-- | Reproduction of the flag explanation chart in <https://developer.mozilla.org/en-US/docs/Web/SVG/Tutorial/Paths>
+--
+-- ![arc flags example](other/arcflags.svg)
+arcFlagsExample :: ChartSvg
+arcFlagsExample =
+  mempty &
+   #chartList .~
+     vert 0.02
+     [hori 0.02
+       [ [Chart BlankA [R -0.4 0.4 -1 5],
+          Chart (TextA (defaultTextStyle & #size .~ 0.6 & #rotation .~ Just (pi/2)) ["Sweep"]) [P 0.1 2]],
+         vert 0.02
+         [[Chart BlankA [R -0.25 0.25 -1 2],
+           Chart (TextA (defaultTextStyle & #size .~ 0.4 & #rotation .~ Just (pi/2)) ["True"]) [P 0.1 0.5]],
+          [Chart BlankA [R -0.25 0.25 -1 2],
+           Chart (TextA (defaultTextStyle & #size .~ 0.4 & #rotation .~ Just (pi/2)) ["False"]) [P 0.1 0.5]]
+       ],
+         vert 0.02
+         [checkFlags False True (Colour 1 0 1 0.3) & view #chartList,
+          checkFlags False False (Colour 0 1 0 0.3) & view #chartList,
+          [Chart BlankA [R -1 2 -0.25 0.25],
+           Chart (TextA (defaultTextStyle & #size .~ 0.4) ["False"]) [P 0.5 -0.1]]
+         ],
+         vert 0.02
+         [checkFlags True True (Colour 0 0 1 0.3) & view #chartList,
+          checkFlags True False (Colour 1 0 0 0.3) & view #chartList,
+           [Chart BlankA [R -1 2 -0.25 0.25],
+            Chart (TextA (defaultTextStyle & #size .~ 0.4) ["True"]) [P 0.5 -0.1]]
+         ]
+       ],
+      [Chart BlankA [R 0 9 0 0.75],
+       Chart (TextA (defaultTextStyle & #size .~ 0.6) ["Large"]) [P 5.5 0.2]]
+     ] &
+   #hudOptions .~ defaultHudOptions &
+   #svgOptions %~ ((#outerPad .~ Nothing) . (#chartAspect .~ UnadjustedAspect))
+
+checkFlags :: Bool -> Bool -> Colour -> ChartSvg
+checkFlags large sweep co =
+  mempty &
+  #hudOptions .~ defaultHudOptions &
+  #svgOptions . #chartAspect .~ UnadjustedAspect &
+  #chartList .~ [c1, c2, ell, arc1]
+  where
+    c = Point 1.0 1.0
+    p1 = ArcPosition (Point 0.0 1.0) (Point 1.0 0.0) (ArcInfo (Point 1.0 1.0) 0 large sweep)
+    ps1 = singletonPie' c p1
+    (ArcCentroid c' r phi' ang0 angd) = arcCentroid p1
+    arc1 = Chart (PathA (defaultPathStyle & #color .~ co & #borderColor .~ Colour 0 0 0 0.5) (fst <$> ps1)) (PointXY . snd <$> ps1)
+    c1 = Chart (LineA $ defaultLineStyle & #width .~ 0.02 & #color .~ Colour 0 0 0 0.2) (PointXY . ellipse (Point 1.0 1.0) (Point 1.0 1.0) 0 . (\x -> 0 + 2 * pi * x / 100.0) <$> [0..100])
+    c2 = Chart (LineA $ defaultLineStyle & #width .~ 0.02 & #color .~ Colour 0 0 0 0.2) (PointXY . ellipse (Point 0.0 0.0) (Point 1.0 1.0) 0 . (\x -> 0 + 2 * pi * x / 100.0) <$> [0..100])
+    ell = Chart (LineA $ defaultLineStyle & #width .~ 0.05 & #color .~ setOpac 0.5 co) (PointXY . ellipse c' r phi' . (\x -> ang0 + angd * x / 100.0) <$> [0..100])
+
+-- | quad example
+--
+-- > quadExample (QuadPosition (Point 0 0) (Point 1 1) (Point 2 -1))
+--
+-- ![quad example](other/quad.svg)
+quadExample :: QuadPosition Double -> ChartSvg
+quadExample p@(QuadPosition start end control) =
+  mempty &
+   #chartList .~ [path', curve, c0, bbox] &
+   #hudOptions .~ defaultHudOptions &
+   #svgOptions %~ ((#outerPad ?~ 0.05) . (#chartAspect .~ ChartAspect))
+  where
+    ps = singletonQuad p
+    path' = Chart (PathA (defaultPathStyle & #color .~ setOpac 0.1 (palette1!!2) & #borderColor .~ transparent) (fst <$> ps)) (PointXY . snd <$> ps)
+    curve = Chart (LineA $ defaultLineStyle & #width .~ 0.002 & #color .~ (palette1!!1)) (PointXY . quadBezier p . (/100.0) <$> [0..100])
+    c0 = Chart (GlyphA defaultGlyphStyle) (PointXY <$> [start, end, control])
+    bbox = Chart (RectA $ defaultRectStyle & #borderSize .~ 0.002 & #color .~ Colour 0.4 0.4 0.8 0.1 & #borderColor .~ Colour 0.5 0.5 0.5 1) [RectXY (quadBox p)]
+
+-- | cubic example
+--
+-- > cubicExample (CubicPosition (Point 0 0) (Point 1 1) (Point 1 -1) (Point 0 2))
+--
+-- ![cubic example](other/cubic.svg)
+cubicExample :: CubicPosition Double -> ChartSvg
+cubicExample p@(CubicPosition start end control1 control2) =
+  mempty &
+   #chartList .~ [path', curve, c0, bbox] &
+   #hudOptions .~
+   ( defaultHudOptions &
+     #hudTitles .~
+     [ defaultTitle pathText &
+       #place .~ PlaceBottom &
+       #style . #size .~ 0.06
+     ] &
+     #hudAxes %~ fmap (#axisTick . #tstyle .~
+                       TickRound (FormatComma (Just 2)) 8 NoTickExtend)
+   ) &
+   #svgOptions %~ ((#outerPad ?~ 0.02) . (#chartAspect .~ ChartAspect))
+  where
+    ps = singletonCubic p
+    path' = Chart (PathA (defaultPathStyle & #color .~ setOpac 0.1 (palette1!!2) & #borderColor .~ transparent) (fst <$> ps)) (PointXY . snd <$> ps)
+    curve = Chart (LineA $ defaultLineStyle & #width .~ 0.002 & #color .~ (palette1!!1)) (PointXY . cubicBezier p . (/100.0) <$> [0..100])
+    c0 = Chart (GlyphA defaultGlyphStyle) (PointXY <$> [start, end, control1, control2, cubicBezier p 0.8])
+    bbox = Chart (RectA $ defaultRectStyle & #borderSize .~ 0.002 & #color .~ Colour 0.4 0.4 0.8 0.1 & #borderColor .~ Colour 0.5 0.5 0.5 1) [RectXY (cubicBox p)]
+    pathText = toPathAbsolutes ps
+
+-- | Create a chart across a surface using a function.
+--
+-- > writeChartSvg "other/surface.svg" $ surfaceExample "rosenbrock" (Point 100 100) one (fst . first (-1.0 *) . second (-1.0 .*) . rosenbrock 1 10)
+--
+-- ![surface example](other/surface.svg)
+--
+surfaceExample ::
+  -- | Legend title
+  Text ->
+  -- | Surface grid
+  Point Int ->
+  -- | Surface range
+  Rect Double ->
+  -- | Surface function
+  (Point Double -> Double) ->
+  ChartSvg
+surfaceExample t grain r f =
+  mempty &
+  #hudList .~ hs &
+  #chartList .~ cs &
+  #svgOptions .~ (defaultSvgOptions & #cssOptions .~ UseCssCrisp)
+  where
+    (cs, hs) =
+      surfacefl f
+      (defaultSurfaceOptions &
+       #soGrain .~ grain &
+       #soRange .~ r &
+       #soStyle . #surfaceColors .~ take 6 palette1)
+      (defaultSurfaceLegendOptions t &
+       #sloStyle . #surfaceColors .~ take 6 palette1)
+
+-- | Create an arrow chart across a surface using a function.
+--
+-- Typically used to represent a gradient.
+--
+-- > writeChartSvg "other/arrowg.svg" $ arrowgExample (Point 20 20) one (fst . first (-1.0 *) . second (-1.0 .*) . rosenbrock 1 10)
+--
+-- ![arrowg example](other/arrowg.svg)
+--
+--
+arrowgExample ::
+  -- | Surface grid
+  Point Int ->
+  -- | Surface range
+  Rect Double ->
+  -- | Surface gradient function
+  (Point Double -> Point Double) ->
+  ChartSvg
+arrowgExample grain r f =
+  mempty &
+  #hudOptions .~ (defaultHudOptions & #hudAxes %~ fmap (#axisTick . #ltick .~ Nothing)) &
+  #chartList .~ ((\p -> chart (tail . f $ p) (angle . f $ p) p) <$> ps) &
+  #svgOptions .~ (defaultSvgOptions & #cssOptions .~ UseCssCrisp)
+  where
+    ps = grid MidPos r grain
+    arrow = PathGlyph "M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"
+    gs s r' =
+      defaultGlyphStyle &
+      #borderSize .~ 0.05 &
+      #size .~ s &
+      #borderColor .~ black &
+      #rotation .~ Just r' &
+      #shape .~ arrow
+    chart s r' p = Chart (GlyphA (gs s r')) [PointXY p]
+
+    tail :: Point Double -> Double
+    tail = max 0.005 . min 0.02 . (*0.01) . (/avmag) . norm
+
+    avmag = sum (norm . f <$> ps) / fromIntegral (length ps)
+
+-- | A surface chart with gradient arrows.
+--
+-- > writeChartSvg "other/surfaceg.svg" $ surfacegExample "rosenbrock" (Point 100 100) (Point 20 20) one (first (-1.0 *) . second (-1.0 .*) . rosenbrock 1 10)
+--
+-- ![surfaceg example](other/surfaceg.svg)
+--
+surfacegExample ::
+  -- | Title
+  Text ->
+  -- | Surface grid
+  Point Int ->
+  -- | Gradient grid
+  Point Int ->
+  -- | Surface range
+  Rect Double ->
+  -- | Surface + gradient function
+  (Point Double -> (Double, Point Double)) ->
+  ChartSvg
+surfacegExample t grainS grainG r f  =
+  surfaceExample t grainS r (fst . f) <>
+  arrowgExample grainG r (snd . f)
+
+-- | function for testing
+--
+-- > f(x,y) = (a-x)^2 + b * (y - x^2)^2
+-- >        = a^2 - 2ax + x^2 + b * y^2 - b * 2 * y * x^2 + b * x ^ 4
+-- > f'x = -2a + 2 * x - b * 4 * y * x + 4 * b * x ^ 3
+-- > f'y = 2 * b * y - 2 * b * x^2
+-- > f a b (Point x y) = (a^2 - 2ax + x^2 + b * y^2 - b * 2 * y * x^2 + b * x^4, Point (-2a + 2 * x - b * 4 * y * x + 4 * b * x ^ 3), 2 * b * y - 2 * b * x^2)
+rosenbrock :: Double -> Double -> Point Double -> (Double, Point Double)
+rosenbrock a b (Point x y) = (a^2 - 2*a*x + x^2 + b * y^2 - b * 2 * y * x^2 + b * x^4, Point (-2*a + 2 * x - b * 4 * y * x + 4 * b * x^3) (2 * b * y - 2 * b * x^2))
+
+-- | This was a problem chart that helped me get the aspect scaling of curves right.
+--
+-- The answer was that radii of an Arc needs to be transformed by scaling changes but not translation ones (radii are relative to existing points which are already being translated).
+--
+-- The problem can be isolated to RunHud ...
+--
+-- >>> let cs = [toPathChart defaultPathStyle $ singletonArc $ ArcPosition (Point 0 1) (Point 1 0) (ArcInfo (Point 1 1) 0 False False)]
+-- >>> runHud (aspect 3) [canvas $ blob (Colour 0.2 0.1 0.7 0.1)] cs
+-- [Chart {annotation = RectA (RectStyle {borderSize = 0.0, borderColor = RGBA 0.00 0.00 0.00 0.00, color = RGBA 0.20 0.10 0.70 0.10}), xys = [R -1.5 1.5000000000000002 -0.5 0.5]},Chart {annotation = PathA (PathStyle {borderSize = 1.0e-2, borderColor = RGBA 0.12 0.47 0.71 0.80, color = RGBA 0.12 0.47 0.71 0.30}) [StartI,ArcI (ArcInfo {radii = Point 3.0 1.0, phi = 0.0, large = False, clockwise = False})], xys = [P -1.5 0.5,P 1.5 -0.5]}]
+--
+-- ![problematic1](other/problematic1.svg)
+--
+-- Incorrect scaling of an Arc was occuring on x-axis gaps, but not with gapless x-axis elements, titles or any y axis variations.
+--
+-- > problematic1 (FixedAspect 1) (ArcPosition (Point 1 0) (Point 0 1) (ArcInfo (Point 1.0 0.5) (0) False True)) & #hudOptions .~ (mempty & #hudAxes .~ [defaultAxisOptions & #place .~ PlaceTop & #adjust .~ Nothing & #axisBar .~ Nothing & #axisTick . #ltick .~ Nothing & #axisTick . #tstyle .~ TickRound (FormatComma (Just 2)) 2 NoTickExtend & #axisTick . #ttick .~ Nothing & #axisTick . #gtick .~ Just (defaultGlyphTick, 0.2), defaultAxisOptions & #place .~ PlaceRight & #adjust .~ Nothing & #axisBar .~ Nothing & #axisTick . #ltick .~ Nothing & #axisTick . #tstyle .~ TickRound (FormatComma (Just 2)) 2 NoTickExtend & #axisTick . #ttick .~ Nothing & #axisTick . #gtick .~ Just (defaultGlyphTick, 0.2)])
+--
+-- Again isolating to runHud ...
+--
+-- > let cs = [toPathChart defaultPathStyle $ singletonArc $ (ArcPosition (Point 1 0) (Point 0 1) (ArcInfo (Point 1.0 0.5) (0) False True))]
+-- > let dbox = padBox $ dataBoxes cs
+-- > dbox
+-- Rect -0.6180339784260676 1.0 -5.901699179399067e-2 1.0
+--
+-- > let ho = (mempty & #hudAxes .~ [defaultAxisOptions & #place .~ PlaceBottom & #adjust .~ Nothing & #axisBar .~ Nothing & #axisTick . #ltick .~ Nothing & #axisTick . #tstyle .~ TickRound (FormatComma (Just 2)) 2 NoTickExtend & #axisTick . #ttick .~ Nothing & #axisTick . #gtick .~ Just (defaultGlyphTick, 0.2), defaultAxisOptions & #place .~ PlaceRight & #adjust .~ Nothing & #axisBar .~ Nothing & #axisTick . #ltick .~ Nothing & #axisTick . #tstyle .~ TickRound (FormatComma (Just 2)) 2 NoTickExtend & #axisTick . #ttick .~ Nothing & #axisTick . #gtick .~ Just (defaultGlyphTick, 0.2)])
+-- > let (hs',cs') = makeHud dbox ho
+-- > let cs1 = runHud dbox hs' cs
+-- > cs1
+--
+-- > [Chart {annotation = GlyphA (GlyphStyle {size = 3.0e-2, color = RGBA 0.50 0.50 0.50 1.00, borderColor = RGBA 0.50 0.50 0.50 1.00, borderSize = 5.0e-3, shape = VLineGlyph 5.0e-3, rotation = Just 1.5707963267948966, translate = Nothing}), xys = [P 1.2049999999999998 0.0,P 1.2049999999999998 0.5,P 1.2049999999999998 1.0]},Chart {annotation = GlyphA (GlyphStyle {size = 3.0e-2, color = RGBA 0.50 0.50 0.50 1.00, borderColor = RGBA 0.50 0.50 0.50 1.00, borderSize = 5.0e-3, shape = VLineGlyph 5.0e-3, rotation = Nothing, translate = Nothing}), xys = [P 0.0 -0.2640169917939907,P 1.0 -0.2640169917939907]},Chart {annotation = PathA (PathStyle {borderSize = 1.0e-2, borderColor = RGBA 0.12 0.47 0.71 0.80, color = RGBA 0.12 0.47 0.71 0.30}) [StartI,ArcI (ArcInfo {radii = Point 1.0 0.5, phi = 0.0, large = False, clockwise = True})], xys = [P 1.0 0.0,P 0.0 1.0]}]
+--
+-- The output from runHud looks ok, so the problem was isolated to projectXYsWith ...
+--
+-- phi was then causing aspect scaling problems. Unadjusted was good:
+--
+-- > writeChartSvg "other/t1.svg" $ problematic1 (UnadjustedAspect) (ArcPosition (Point 1 0) (Point 0 1) (ArcInfo (Point 1.0 0.5) (-pi/4) False True)) & #hudOptions .~ defaultHudOptions
+--
+-- And then I realised that the x and y radii of the ellipse was __firstly__ rotated in the XY-space and only then should be subject to scaling...
+problematic1 :: ChartAspect -> ArcPosition Double -> ChartSvg
+problematic1 ca p =
+  mempty &
+  #chartList .~ [arc, ell, pts, bbox] &
+  #hudOptions .~ defaultHudOptions &
+  #svgOptions .~ (defaultSvgOptions & #chartAspect .~ ca)
+  where
+    -- p = ArcPosition (Point 0 1) (Point 1 0) (ArcInfo (Point 1 1) 0 False False)
+    (ArcCentroid c r phi' ang0 angd) = arcCentroid p
+    ps = singletonArc p
+    arc = toPathChart defaultPathStyle ps
+    ell = Chart (LineA $ defaultLineStyle & #width .~ 0.002 & #color .~ (palette1!!1)) (PointXY . ellipse c r phi' . (\x -> ang0 + angd * x / 10.0) <$> [0..10])
+    pts = Chart (GlyphA defaultGlyphStyle) (fmap PointXY [c, p ^. #posStart, p ^. #posEnd])
+    bbox = Chart (RectA $ defaultRectStyle & #borderSize .~ 0.002 & #color .~ Colour 0.4 0.4 0.8 0.1 & #borderColor .~ Colour 0.5 0.5 0.5 1) [RectXY (arcBox p)]
+
+-- | FIXME: A guesstimate for arc scaling
+--
+-- In a chart-svg projection (See 'projectOnP' say), points on the ellipse scale, but radii and angles do not, and not sure about the centroid.
+--
+-- This causes distortion for chart-svg re-scaling.
+--
+-- This is a chart of a guess for values for (aspect 2)
+--
+-- > let p = ArcPosition (Point 0 0) (Point 1 0) (ArcInfo (Point 1 2) (pi/6) True True)
+-- > let guess = ArcCentroid (Point -0.2864867185179476 1.6092991486979669) (Point 1.3266801807145205 3.0142082605509395) 1.0962340928888052 -2.8 -5.5
+--
+-- ![problematic2](other/problematic2.svg)
+problematic2 :: ArcPosition Double -> ArcCentroid Double -> ChartSvg
+problematic2 p@(ArcPosition p1 p2 _) (ArcCentroid gc gr gphi gang0 gangd)=
+  mempty &
+   #chartList .~ [ellGuess] <> projectXYsWith asp one [c0, xradii, yradii, dir0, dir1, ell, ellFull, rtxt, gs] &
+   #hudOptions .~ defaultHudOptions &
+   #svgOptions %~ ((#outerPad .~ Nothing) . (#chartAspect .~ UnadjustedAspect))
+  where
+    asp = aspect 2
+    (ArcCentroid c r a ang0 angd) = arcCentroid p
+    ang1 = ang0+angd
+    ax = c+_x r .* ray a
+    ay = c+_y r .* ray (a + pi/2)
+    ellFull = Chart (LineA $ defaultLineStyle & #width .~ 0.002 & #color .~ (palette1!!1)) (PointXY . ellipse c r a . (\x -> 2 * pi * x / 100.0) <$> [0..100])
+    ell = Chart (LineA $ defaultLineStyle & #width .~ 0.04 & #color .~ setOpac 0.3 (palette1!!2)) (PointXY . ellipse c r a . (\x -> ang0 + (ang1 - ang0) * x / 100.0) <$> [0..100])
+    ellGuess = Chart (LineA $ defaultLineStyle & #width .~ 0.03 & #color .~ setOpac 0.4 (palette1!!4)) (PointXY . ellipse gc gr gphi . (\x -> gang0 + gangd * x / 100.0) <$> [0..100])
+    c0 = Chart (GlyphA defaultGlyphStyle) (PointXY <$> [c,p1,p2,ax,ay])
+    gs = Chart (GlyphA $ defaultGlyphStyle & #shape .~ CircleGlyph & #size .~ 0.05) (PointXY <$> [ellipse c r a 0.472, ellipse c r a (0.472 + pi/2)])
+    xradii = Chart (LineA $ defaultLineStyle & #color .~ Colour 0.9 0.2 0.02 1 & #width .~ 0.005 & #dasharray .~ Just [0.03, 0.01] & #linecap .~ Just LineCapRound) (PointXY <$> [c, ax])
+    yradii = Chart (LineA $ defaultLineStyle & #color .~ Colour 0.9 0.8 0.02 1 & #width .~ 0.005 & #dasharray .~ Just [0.03, 0.01] & #linecap .~ Just LineCapRound) (PointXY <$> [c, ay])
+    dir0 = Chart (LineA $ defaultLineStyle & #color .~ Colour 0.2 0.9 0.8 1 & #width .~ 0.005 & #dasharray .~ Just [0.03, 0.01] & #linecap .~ Just LineCapRound) (PointXY <$> [c, p1])
+    dir1 = Chart (LineA $ defaultLineStyle & #color .~ Colour 0.2 0.2 0.9 1 & #width .~ 0.005 & #dasharray .~ Just [0.03, 0.01] & #linecap .~ Just LineCapRound) (PointXY <$> [c, p2])
+    rtxt = Chart (TextA defaultTextStyle ((\(Point x y) -> fixed (Just 3) x <> "," <> fixed (Just 3) y) <$> [r])) [P 0 2.5, P 0 2]
+
+-- | Run this to refresh haddock example SVGs.
 writeAllExamples :: IO ()
 writeAllExamples = do
-  -- haddocks
-  let ls' =
-        fmap (PointXY . uncurry Point)
-          <$> [ [(0.0, 1.0), (1.0, 1.0), (2.0, 5.0 :: Double)],
-                [(0.0, 0.0), (3.0, 3.0)],
-                [(0.5, 4.0), (0.5, 0)]
-              ]
-  let anns =
-        LineA
-          <$> [ defaultLineStyle & #color .~ (palette1 !! 0) & #width .~ 0.015,
-                defaultLineStyle & #color .~ (palette1 !! 1) & #width .~ 0.03,
-                defaultLineStyle & #color .~ (palette1 !! 5) & #width .~ 0.01
-              ]
-  let lines' = zipWith Chart anns ls'
-  writeCharts "other/lines.svg" lines'
-  writeHudOptionsChart "other/linehud.svg" defaultSvgOptions defaultHudOptions [] lines'
-  writeCharts "other/unit.svg" [Chart (RectA defaultRectStyle) [one]]
-  let t = zipWith (\x y -> Chart (TextA (defaultTextStyle & (#size .~ (0.05 :: Double))) [x]) [PointXY y]) (fmap Text.singleton ['a' .. 'y']) [Point (sin (x * 0.1)) x | x <- [0 .. 25]]
-  writeCharts "other/text.svg" t
-  writeCharts "other/glyph.svg" glyphs
-  writeHudOptionsChart "other/pixel.svg" defaultSvgOptions defaultHudOptions (snd pixelEx) (fst pixelEx)
-  writeChartsWith "other/svgoptions.svg" (defaultSvgOptions & #svgAspect .~ ManualAspect 0.7) lines'
-  writeHudOptionsChart "other/hud.svg" defaultSvgOptions defaultHudOptions [] []
-  -- basics
-  writeCharts "other/mempty.svg" []
-  writeChartExample "other/bar.svg" barExample
-  writeCharts "other/boundText.svg" boundTextBug
-  writeHudOptionsChart "other/legend.svg" defaultSvgOptions legendTest [] []
-  putStrLn (" 👍" :: Text)
+  -- Example in cabal file
+  let xs = [[(0.0, 1.0), (1.0, 1.0), (2.0, 5.0)], [(0.0, 0.0), (3.2, 3.0)], [(0.5, 4.0), (0.5, 0)]] :: [[(Double, Double)]]
+  let ls = fmap (PointXY . uncurry Point) <$> xs
+  let anns = zipWith (\w c -> LineA (defaultLineStyle & #width .~ w & #color .~ c)) [0.015, 0.03, 0.01] palette1
+  let lineChart = zipWith Chart anns ls
+  writeChartSvgDefault "other/lines.svg" lineChart
+  writeChartSvgHud "other/lineshud.svg" lineChart
+
+  -- charts in Chart.Types
+  writeChartSvg "other/unit.svg" unitExample
+  writeChartSvg "other/rect.svg" rectExample
+  writeChartSvg "other/text.svg" textExample
+  writeChartSvg "other/glyphs.svg" glyphsExample
+  writeChartSvg "other/line.svg" lineExample
+  writeChartSvg "other/svgoptions.svg" svgOptionsExample
+  writeChartSvg "other/hudoptions.svg" hudOptionsExample
+  writeChartSvg "other/legend.svg" legendExample
+  -- charts in Chart.Bar
+  writeChartSvg "other/bar.svg" barExample
+  -- extra Charts in Chart.Example
+  writeChartSvg "other/wave.svg" waveExample
+  writeChartSvg "other/lglyph.svg" lglyphExample
+  writeChartSvg "other/glines.svg" glinesExample
+  writeChartSvg "other/compound.svg" compoundExample
+  writeChartSvg "other/boundTextBug.svg" boundTextBugExample
+  writeChartSvg "other/label.svg" labelExample
+  writeChartSvg "other/venn.svg" vennExample
+  writeChartSvg "other/path.svg" pathExample
+  writeChartSvg "other/arc.svg" $
+    arcExample (ArcPosition (Point 1.0 0.0) (Point 0.0 1.0)
+             (ArcInfo (Point 1.0 0.5) (-pi/3) False True))
+  writeChartSvg "other/arcflags.svg" arcFlagsExample
+  writeChartSvg "other/ellipse.svg" $ ellipseExample
+    (ArcPosition (Point 1 0) (Point 0 1) (ArcInfo (Point 1.5 1) (pi/3) True True))
+  writeChartSvg "other/quad.svg" $
+    quadExample (QuadPosition (Point 0 0) (Point 1 1) (Point 2 -1))
+  writeChartSvg "other/cubic.svg" $
+    cubicExample (CubicPosition (Point 0 0) (Point 1 1) (Point 1 0) (Point 0 1))
+  writeChartSvg "other/surface.svg" $
+    surfaceExample "rosenbrock" (Point 100 100) one
+    (fst . bimap (-1.0 *) (-1.0 .*) . rosenbrock 1 10)
+  writeChartSvg "other/arrowg.svg" $
+    arrowgExample (Point 20 20) one
+    (snd . bimap (-1.0 *) (-1.0 .*) . rosenbrock 1 10)
+  writeChartSvg "other/surfaceg.svg" $
+    surfacegExample "rosenbrock" (Point 100 100) (Point 20 20) one
+    (bimap (-1.0 *) (-1.0 .*) . rosenbrock 1 10)
+
+  -- problematic charts
+  writeChartSvg "other/problematic1.svg" $
+    problematic1 (FixedAspect 2) (ArcPosition (Point 0 1) (Point 1 0) (ArcInfo (Point 1 1) 0 False False))
+  writeChartSvg "other/problematic2.svg" $
+    problematic2 (ArcPosition (Point 0 0) (Point 1 0) (ArcInfo (Point 1 2) (pi/6) True True)) (ArcCentroid (Point -0.2864867185179476 1.6092991486979669) (Point 1.3266801807145205 3.0142082605509395) 1.0962340928888052 -2.8 -5.5)
+
+  putStrLn ("ok" :: Text)
diff --git a/src/Chart/Page.hs b/src/Chart/Page.hs
deleted file mode 100644
--- a/src/Chart/Page.hs
+++ /dev/null
@@ -1,1158 +0,0 @@
-{-# LANGUAGE ApplicativeDo #-}
-{-# LANGUAGE FlexibleContexts #-}
-{-# LANGUAGE OverloadedLabels #-}
-{-# LANGUAGE OverloadedStrings #-}
-{-# LANGUAGE NoImplicitPrelude #-}
-{-# OPTIONS_GHC -Wall #-}
-{-# OPTIONS_GHC -fno-warn-name-shadowing #-}
-
-module Chart.Page
-  ( repChartStaticData,
-    repAnnotation,
-    repRectStyle,
-    repTextStyle,
-    repGlyphStyle,
-    repLineStyle,
-    repPlace,
-    repAnchor,
-    repBar,
-    repAdjustments,
-    repTitle,
-    repHudOptions,
-    repAxisOptions,
-    repSvgOptions,
-    repData,
-    repFormatN,
-    repTickStyle,
-    repTick,
-    repPoint,
-    repPointI,
-    repRect,
-    repRectOne,
-    repRounded,
-    repTriple,
-    repGlyphShape,
-    repLegendOptions,
-    repChartsWithSharedData,
-    repChartsWithStaticData,
-    debugHtml,
-    debugFlags,
-    repHudOptionsDefault,
-    repBarOptions,
-    repBarData,
-    repBarChart,
-    repPixelOptions,
-    repPixelLegendOptions,
-    repPixelChart,
-    repNoData,
-  )
-where
-
-import Chart.Bar
-import Data.FormatN
-import Chart.Pixel
-import Chart.Render (renderHudOptionsChart)
-import Chart.Types
-import Control.Lens
-import Data.Attoparsec.Text
-import Data.Colour
-import qualified Data.Text as Text
-import Lucid
-import NumHask.Prelude
-import NumHask.Space
-import Text.Pretty.Simple (pShowNoColor)
-import Web.Rep
-
-pShow' :: (Show a) => a -> Text
-pShow' = toStrict . pShowNoColor
-
-repChartStaticData :: (Monad m) => Chart a -> SharedRep m (Chart a)
-repChartStaticData c = do
-  ann <- repAnnotation (c ^. #annotation)
-  pure $ Chart ann (c ^. #xys)
-
-repAnnotation :: (Monad m) => Annotation -> SharedRep m Annotation
-repAnnotation initann = bimap hmap mmap rann <<*>> rs <<*>> ts <<*>> gs <<*>> ls <<*>> ps
-  where
-    rann =
-      dropdownSum
-        takeText
-        id
-        (Just "Chart Annotation")
-        ["RectA", "TextA", "GlyphA", "LineA", "BlankA", "PixelA"]
-        (annotationText initann)
-    rs = repRectStyle defRectStyle
-    ts = repTextStyle defText
-    gs = repGlyphStyle defGlyph
-    ls = repLineStyle defLine
-    ps = repPixelStyle defPixel
-    hmap ann rs ts gs ls ps =
-      ann
-        <> subtype rs (annotationText initann) "RectA"
-        <> subtype ts (annotationText initann) "TextA"
-        <> subtype gs (annotationText initann) "GlyphA"
-        <> subtype ls (annotationText initann) "LineA"
-        <> subtype ps (annotationText initann) "PixelA"
-    mmap ann rs ts gs ls ps =
-      case ann of
-        "RectA" -> RectA rs
-        "TextA" -> TextA ts texts
-        "GlyphA" -> GlyphA gs
-        "LineA" -> LineA ls
-        "BlankA" -> BlankA
-        "PixelA" -> PixelA ps
-        _ -> BlankA
-    defRectStyle = case initann of
-      RectA s -> s
-      _ -> defaultRectStyle
-    defPixel = case initann of
-      PixelA s -> s
-      _ -> defaultPixelStyle
-    (defText, texts) = case initann of
-      TextA s xs -> (s, xs)
-      _ -> (defaultTextStyle, Text.singleton <$> ['a' .. 'z'])
-    defGlyph = case initann of
-      GlyphA s -> s
-      _ -> defaultGlyphStyle
-    defLine = case initann of
-      LineA s -> s
-      _ -> defaultLineStyle
-
-repRectStyle :: (Monad m) => RectStyle -> SharedRep m RectStyle
-repRectStyle s = do
-  bs <- slider (Just "border size") 0.0 0.1 0.001 (s ^. #borderSize)
-  bc <- colorPicker (Just "border color") (hex $ s ^. #borderColor)
-  bo <- slider (Just "border opacity") 0 1 0.1 (opac $ s ^. #borderColor)
-  c <- colorPicker (Just "color") (hex $ s ^. #color)
-  o <- slider (Just "opacity") 0 1 0.1 (opac $ s ^. #color)
-  pure $ RectStyle bs (fromRGB (unsafeFromHex bc) bo) (fromRGB (unsafeFromHex c) o)
-
-repPixelStyle ::
-  (Monad m) =>
-  PixelStyle ->
-  SharedRep m PixelStyle
-repPixelStyle cfg =
-  bimap hmap mmap (unsafeFromHex <$> pcmin)
-    <<*>> pomin
-    <<*>> (unsafeFromHex <$> pcmax)
-    <<*>> pomax
-    <<*>> pd
-    <<*>> prs
-    <<*>> pt
-  where
-    pcmax = colorPicker (Just "high color") (toHex $ cfg ^. #pixelColorMax)
-    pcmin = colorPicker (Just "low color") (toHex $ cfg ^. #pixelColorMin)
-    pomax = slider (Just "high opacity") 0.0 1.0 0.001 (opac $ cfg ^. #pixelColorMax)
-    pomin = slider (Just "low opacity") 0.0 1.0 0.001 (opac $ cfg ^. #pixelColorMin)
-    pd = slider (Just "gradient direction") 0.0 (2 * pi) 0.001 (cfg ^. #pixelGradient)
-    prs = repRectStyle (cfg ^. #pixelRectStyle)
-    pt = textbox (Just "texture id") (cfg ^. #pixelTextureId)
-    hmap pcmin' pomin' pcmax' pomax' pd' prs' pt' =
-      pcmin' <> pomin' <> pcmax' <> pomax' <> pd' <> prs' <> pt'
-    mmap pcmin' pomin' pcmax' pomax' pd' prs' pt' =
-      PixelStyle (fromRGB pcmin' pomin') (fromRGB pcmax' pomax') pd' prs' pt'
-
-repGlyphStyle :: (Monad m) => GlyphStyle -> SharedRep m GlyphStyle
-repGlyphStyle gs = first (\x -> cardify (mempty, [style_ "width: 10 rem;"]) Nothing (x, [])) $ do
-  sh <- repGlyphShape (gs ^. #shape)
-  sz <- slider (Just "Size") 0 0.2 0.001 (gs ^. #size)
-  gc <-
-    colorPicker
-      (Just "Color")
-      (toHex $ gs ^. #color)
-  go <- slider (Just "Opacity") 0 1 0.1 (opac $ gs ^. #color)
-  bsz <- slider (Just "Border Size") 0 0.02 0.001 (gs ^. #borderSize)
-  gbc <- colorPicker (Just "Border Color") (toHex $ gs ^. #borderColor)
-  gbo <- slider (Just "Border Opacity") 0 1 0.1 (opac $ gs ^. #borderColor)
-  tr <-
-    maybeRep
-      (Just "rotation")
-      (isJust (gs ^. #rotation))
-      (slider (Just "rotation") (-180) 180 10 (fromMaybe 0 (gs ^. #rotation)))
-  tt <-
-    maybeRep
-      (Just "translate")
-      (isJust (gs ^. #translate))
-      ( repPoint
-          (Point (Range 0 1) (Range 0 1))
-          (Point 0.001 0.001)
-          (Point 0 0)
-      )
-  pure (GlyphStyle sz (fromRGB (unsafeFromHex gc) go) (fromRGB (unsafeFromHex gbc) gbo) bsz sh tr tt)
-
-repTextStyle :: (Monad m) => TextStyle -> SharedRep m TextStyle
-repTextStyle s = do
-  ts <- slider (Just "size") 0.02 0.2 0.01 (s ^. #size)
-  tc <- colorPicker (Just "color") (toHex $ s ^. #color)
-  to' <- slider (Just "opacity") 0 1 0.1 (opac $ s ^. #color)
-  ta <- repAnchor (s ^. #anchor)
-  th <- slider (Just "hsize") 0.2 1 0.05 (s ^. #hsize)
-  tv <- slider (Just "vsize") 0.5 2 0.05 (s ^. #vsize)
-  tn <- slider (Just "nudge1") (-0.5) 0.5 0.05 (s ^. #nudge1)
-  tr <-
-    maybeRep
-      (Just "rotation")
-      (isJust (s ^. #rotation))
-      (slider (Just "rotation") (-180) 180 10 (fromMaybe 0 (s ^. #rotation)))
-  tt <-
-    maybeRep
-      (Just "translate")
-      (isJust (s ^. #translate))
-      ( repPoint
-          (Point (Range 0 1) (Range 0 1))
-          (Point 0.001 0.001)
-          (Point 0 0)
-      )
-  tm <- checkbox (Just "mathjax") (s ^. #hasMathjax)
-  pure $ TextStyle ts (fromRGB (unsafeFromHex tc) to') ta th tv tn tr tt tm
-
-repLineStyle :: (Monad m) => LineStyle -> SharedRep m LineStyle
-repLineStyle s = do
-  w <- slider (Just "width") 0.000 0.05 0.001 (s ^. #width)
-  c <- colorPicker (Just "color") (toHex $ s ^. #color)
-  o <- slider (Just "opacity") 0 1 0.1 (opac $ s ^. #color)
-  pure $ LineStyle w (fromRGB (unsafeFromHex c) o)
-
-repPlace :: (Monad m) => Place -> SharedRep m Place
-repPlace initpl = bimap hmap mmap rplace <<*>> rp
-  where
-    rplace =
-      dropdownSum
-        takeText
-        id
-        (Just "Placement")
-        [ "Bottom",
-          "Left",
-          "Top",
-          "Right",
-          "Absolute"
-        ]
-        (placeText initpl)
-    rp = repPoint (Point (Range 0 1) (Range 0 1)) (Point 0.01 0.01) (defPoint initpl)
-    defPoint pl = case pl of
-      PlaceAbsolute p -> p
-      _ -> Point 0.0 0.0
-    hmap rplace rp =
-      div_
-        ( rplace
-            <> subtype rp (placeText initpl) "Absolute"
-        )
-    mmap rplace rp = case rplace of
-      "Top" -> PlaceTop
-      "Bottom" -> PlaceBottom
-      "Left" -> PlaceLeft
-      "Right" -> PlaceRight
-      "Absolute" -> PlaceAbsolute rp
-      _ -> PlaceBottom
-
-repAnchor :: (Monad m) => Anchor -> SharedRep m Anchor
-repAnchor a =
-  toAnchor
-    <$> dropdown
-      takeText
-      id
-      (Just "Anchor")
-      (fromAnchor <$> [AnchorStart, AnchorMiddle, AnchorEnd])
-      (fromAnchor a)
-
-repDirection :: (Monad m) => Direction -> SharedRep m Direction
-repDirection a =
-  toDirection
-    <$> dropdown
-      takeText
-      id
-      (Just "Direction")
-      (fromDirection <$> [Vert, Hori])
-      (fromDirection a)
-
-repBar :: (Monad m) => Bar -> SharedRep m Bar
-repBar cfg = do
-  r <- repRectStyle (cfg ^. #rstyle)
-  w <- slider (Just "width") 0 0.04 0.001 (cfg ^. #wid)
-  b <- slider (Just "buffer") 0 0.08 0.001 (cfg ^. #buff)
-  pure $ Bar r w b
-
-repAdjustments :: (Monad m) => Adjustments -> SharedRep m Adjustments
-repAdjustments a = do
-  maxx <- slider (Just "maximum x ratio") 0.000 0.2 0.001 (a ^. #maxXRatio)
-  maxy <- slider (Just "maximum y ratio") 0.000 0.2 0.001 (a ^. #maxYRatio)
-  angle <- slider (Just "angle ratio") 0.000 1 0.001 (a ^. #angledRatio)
-  diag <- checkbox (Just "allow diagonal text") (a ^. #allowDiagonal)
-  pure $ Adjustments maxx maxy angle diag
-
-repTitle :: (Monad m) => Title -> SharedRep m Title
-repTitle cfg = do
-  ttext <- textbox (Just "text") (cfg ^. #text)
-  ts <- repTextStyle (cfg ^. #style)
-  tp <- repPlace (cfg ^. #place)
-  ta <- repAnchor (cfg ^. #anchor)
-  b <- slider (Just "buffer") 0 0.2 0.01 (cfg ^. #buff)
-  pure $ Title ttext ts tp ta b
-
-repHudOptions ::
-  (Monad m) =>
-  Int ->
-  Int ->
-  Int ->
-  AxisOptions ->
-  Title ->
-  LegendOptions ->
-  [(Annotation, Text)] ->
-  Annotation ->
-  Text ->
-  HudOptions ->
-  SharedRep m HudOptions
-repHudOptions naxes ntitles nlegendRows defaxis deftitle deflegend deflrs defann deflabel cfg =
-  bimap hmap (\a b c d -> HudOptions a b c d) can
-    <<*>> ts
-    <<*>> axs
-    <<*>> l
-  where
-    can =
-      maybeRep (Just "canvas") (isJust (cfg ^. #hudCanvas)) $
-        repRectStyle (fromMaybe defaultCanvas (cfg ^. #hudCanvas))
-    ts =
-      listRep
-        (Just "titles")
-        "tz"
-        (checkbox Nothing)
-        repTitle
-        ntitles
-        deftitle
-        (cfg ^. #hudTitles)
-    axs =
-      listRep
-        (Just "axes")
-        "axz"
-        (checkbox Nothing)
-        repAxisOptions
-        naxes
-        defaxis
-        (cfg ^. #hudAxes)
-    labelsc =
-      listRep
-        (Just "labelsc")
-        "labelscz"
-        (checkbox Nothing)
-        (textbox Nothing)
-        nlegendRows
-        deflabel
-        (snd <$> deflrs)
-    anns =
-      listRep
-        (Just "annotations")
-        "annsz"
-        (checkbox Nothing)
-        repAnnotation
-        nlegendRows
-        defann
-        (fst <$> deflrs)
-    l =
-      maybeRep
-        (Just "legend")
-        (isJust $ cfg ^. #hudLegend)
-        ( (,)
-            <$> repLegendOptions (maybe deflegend fst (cfg ^. #hudLegend))
-            <*> (zip <$> anns <*> labelsc)
-        )
-    hmap can' ts' axs' l' =
-      accordion_
-        "accc"
-        Nothing
-        [ ("Axes", axs'),
-          ("Canvas", can'),
-          ("Titles", ts'),
-          ("Legend", l')
-        ]
-
-repAxisOptions :: (Monad m) => AxisOptions -> SharedRep m AxisOptions
-repAxisOptions cfg = bimap hmap AxisOptions b <<*>> adj <<*>> t <<*>> p
-  where
-    b =
-      maybeRep
-        (Just "axis bar")
-        (isJust (cfg ^. #abar))
-        (repBar (fromMaybe defaultBar (cfg ^. #abar)))
-    adj =
-      maybeRep
-        (Just "adjustments")
-        (isJust (cfg ^. #adjust))
-        (repAdjustments (fromMaybe defaultAdjustments (cfg ^. #adjust)))
-    t = repTick (cfg ^. #atick)
-    p = repPlace (cfg ^. #place)
-    hmap b' hauto' t' p' =
-      accordion_
-        "accaxis"
-        Nothing
-        [ ("Bar", b'),
-          ("Auto", hauto'),
-          ("Ticks", t'),
-          ("Place", p')
-        ]
-
-repSvgAspect :: (Monad m) => SvgAspect -> Double -> SharedRep m SvgAspect
-repSvgAspect sa ddef =
-  bimap hmap toSvgAspect sa' <<*>> td
-  where
-    sa' =
-      dropdownSum
-        takeText
-        id
-        (Just "Aspect")
-        [ "ManualAspect",
-          "ChartsAspect"
-        ]
-        (fromSvgAspect sa)
-    td = slider (Just "aspect scale") 0 10 0.01 (defD ddef)
-    defD d' = case sa of
-      ManualAspect d -> d
-      ChartAspect -> d'
-    hmap sa'' td' =
-      div_
-        ( sa''
-            <> subtype td' (fromSvgAspect sa) "ManualAspect"
-        )
-
-repSvgOptions :: (Monad m) => SvgOptions -> SharedRep m SvgOptions
-repSvgOptions s =
-  bimap
-    hmap
-    SvgOptions
-    h'
-    <<*>> op'
-    <<*>> ip
-    <<*>> fr
-    <<*>> esc
-    <<*>> csso
-    <<*>> scalec
-    <<*>> svga
-  where
-    svga = repSvgAspect (s ^. #svgAspect) 1.33
-    h' = slider (Just "height") 1 1000 1 (s ^. #svgHeight)
-    op' =
-      maybeRep
-        (Just "outer pad")
-        (isJust (s ^. #outerPad))
-        (slider Nothing 0 0.1 0.01 (fromMaybe 1 (s ^. #outerPad)))
-    ip =
-      maybeRep
-        (Just "inner pad")
-        (isJust (s ^. #innerPad))
-        (slider Nothing 0 0.1 0.01 (fromMaybe 1 (s ^. #innerPad)))
-    fr =
-      maybeRep
-        (Just "frame")
-        (isJust (s ^. #chartFrame))
-        (repRectStyle (fromMaybe defaultSvgFrame (s ^. #chartFrame)))
-    esc =
-      bool NoEscapeText EscapeText
-        <$> checkbox (Just "escape text") (EscapeText == s ^. #escapeText)
-    csso =
-      bool NoCssOptions UseCssCrisp
-        <$> checkbox (Just "Use CssCrisp") (UseCssCrisp == s ^. #useCssCrisp)
-    scalec =
-      bool NoScaleCharts ScaleCharts
-        <$> checkbox (Just "Scale Charts") (ScaleCharts == s ^. #scaleCharts')
-    hmap h' op'' ip' fr' esc' csso' scalec' svga' =
-      accordion_
-        "accsvg"
-        Nothing
-        [ ("Aspect", svga' <> h'),
-          ("Padding", op'' <> ip'),
-          ("Frame", fr'),
-          ("Escape", esc'),
-          ("Css", csso'),
-          ("Scale", scalec')
-        ]
-
-repData :: (Monad m) => Text -> SharedRep m [XY Double]
-repData d = do
-  a <-
-    dropdown
-      takeText
-      id
-      (Just "type")
-      [ "sin",
-        "line",
-        "one",
-        "dist"
-      ]
-      d
-  pure
-    ( case a of
-        "sin" -> PointXY <$> gridP sin (Range 0 (2 * pi)) 30
-        "line" ->
-          PointXY . uncurry Point
-            <$> [(0.0, 1.0), (1.0, 1.0), (2.0, 5.0)]
-        "one" -> [R 0 1 0 1]
-        "dist" -> RectXY <$> gridR (\x -> exp (- (x ** 2) / 2)) (Range (-5) 5) 50
-        _ -> PointXY <$> gridP sin (Range 0 (2 * pi)) 30
-    )
-
-repFormatN :: (Monad m) => FormatN -> SharedRep m FormatN
-repFormatN tf = bimap hmap mmap tformat <<*>> tcommas <<*>> tfixed <<*>> texpt <<*>> tpercent <<*>> tprec <<*>> tdecimal <<*>> tdollar
-  where
-    tformat =
-      dropdownSum
-        takeText
-        id
-        (Just "Format")
-        [ "Comma",
-          "Fixed",
-          "Decimal",
-          "Prec",
-          "Expt",
-          "Dollar",
-          "Percent",
-          "None"
-        ]
-        (fromFormatN tf)
-    tcommas = maybeRep Nothing (defSig tf) (sliderI (Just "prec") 0 8 1 (defInt tf))
-    tfixed = maybeRep Nothing (defSig tf) $ sliderI (Just "prec") 0 8 1 (defInt tf)
-    texpt = maybeRep Nothing (defSig tf) $ sliderI (Just "prec") 0 8 1 (defInt tf)
-    tpercent = maybeRep Nothing (defSig tf) $ sliderI (Just "prec") 0 8 1 (defInt tf)
-    tprec = maybeRep Nothing (defSig tf) $ sliderI (Just "prec") 0 8 1 (defInt tf)
-    tdecimal = maybeRep Nothing (defSig tf) $ sliderI (Just "prec") 0 8 1 (defInt tf)
-    tdollar = maybeRep Nothing (defSig tf) $ sliderI (Just "prec") 0 8 1 (defInt tf)
-    defInt tf' = case tf' of
-      FormatComma (Just n) -> n
-      FormatFixed (Just n) -> n
-      FormatDecimal (Just n) -> n
-      FormatPrec (Just n) -> n
-      FormatExpt (Just n) -> n
-      FormatDollar (Just n) -> n
-      FormatPercent (Just n) -> n
-      _ -> 3
-    defSig tf' = case tf' of
-      FormatComma (Just _) -> True
-      FormatFixed (Just _) -> True
-      FormatDecimal (Just _) -> True
-      FormatPrec (Just _) -> True
-      FormatExpt (Just _) -> True
-      FormatDollar (Just _) -> True
-      FormatPercent (Just _) -> True
-      _ -> False
-    hmap tformat' tcommas' tfixed' texpt' tpercent' tprec' tdecimal' tdollar' =
-      div_
-        ( tformat'
-            <> subtype tcommas' (fromFormatN tf) "Comma"
-            <> subtype tfixed' (fromFormatN tf) "Fixed"
-            <> subtype texpt' (fromFormatN tf) "Expt"
-            <> subtype tpercent' (fromFormatN tf) "Percent"
-            <> subtype tprec' (fromFormatN tf) "Prec"
-            <> subtype tdecimal' (fromFormatN tf) "Decimal"
-            <> subtype tdollar' (fromFormatN tf) "Dollar"
-        )
-    mmap tformat' tcommas' tfixed' texpt' tpercent' tprec' tdecimal' tdollar' = case tformat' of
-      "Comma" -> FormatComma tcommas'
-      "Fixed" -> FormatFixed tfixed'
-      "Decimal" -> FormatDecimal tdecimal'
-      "Prec" -> FormatPrec tprec'
-      "Expt" -> FormatExpt texpt'
-      "Dollar" -> FormatDollar tdollar'
-      "Percent" -> FormatPercent tpercent'
-      "None" -> FormatNone
-      _ -> FormatNone
-
-repTickStyle :: (Monad m) => TickStyle -> SharedRep m TickStyle
-repTickStyle cfg =
-  bimap hmap mmap ts <<*>> ls <<*>> tr <<*>> te <<*>> tplaced
-  where
-    ts =
-      dropdownSum
-        takeText
-        id
-        (Just "Tick Style")
-        ["TickNone", "TickLabels", "TickRound", "TickExact", "TickPlaced"]
-        (tickStyleText cfg)
-    ls =
-      accordionList
-        (Just "tick labels")
-        "tick-style-labels"
-        Nothing
-        (textbox . Just)
-        (defaultListLabels (length defLabels))
-        defLabels
-    tr =
-      (,,)
-        <$> sliderI (Just "Number of ticks") 0 20 1 defTn
-        <*> repFormatN defTf
-        <*> ( bool NoTickExtend TickExtend
-                <$> checkbox (Just "extend") defExtend
-            )
-    te =
-      (,)
-        <$> sliderI (Just "Number of ticks") 0 20 1 defTn
-        <*> repFormatN defTf
-    tplaced =
-      accordionList
-        (Just "placed ticks")
-        "tick-style-placed"
-        Nothing
-        dt
-        (defaultListLabels (length dtDef))
-        dtDef
-    hmap ts' ls' tr' te' tplaced' =
-      div_
-        ( ts'
-            <> subtype ls' (tickStyleText cfg) "TickLabels"
-            <> subtype tr' (tickStyleText cfg) "TickRound"
-            <> subtype te' (tickStyleText cfg) "TickExact"
-            <> subtype tplaced' (tickStyleText cfg) "TickPlaced"
-        )
-    mmap ts' ls' (tri, trf, tre) (tei, tef) tplaced' = case ts' of
-      "TickNone" -> TickNone
-      "TickLabels" -> TickLabels ls'
-      "TickRound" -> TickRound trf tri tre
-      "TickExact" -> TickExact tef tei
-      "TickPlaced" -> TickPlaced tplaced'
-      _ -> TickNone
-    dtDef = case cfg of
-      TickPlaced x -> x
-      _ -> zip [0 .. 5] (pack . show <$> [0 .. 5 :: Int])
-    dt _ (x, l) = (,) <$> slider (Just "placement") 0 1 0.01 x <*> textbox (Just "label") l
-    defLabels = case cfg of
-      TickLabels xs -> xs
-      _ -> replicate 5 ""
-    defTn = case cfg of
-      TickRound _ x _ -> x
-      TickExact _ x -> x
-      _ -> 8
-    defTf = case cfg of
-      TickRound x _ _ -> x
-      TickExact x _ -> x
-      _ -> FormatPrec (Just 3)
-    defExtend = case cfg of
-      TickRound _ _ e -> e == TickExtend
-      _ -> True
-
-repTick :: (Monad m) => Tick -> SharedRep m Tick
-repTick cfg = bimap hmap Tick ts <<*>> gt <<*>> tt <<*>> lt
-  where
-    hmap ts' gt' tt' lt' =
-      accordion_
-        "acctick"
-        Nothing
-        [ ("style", ts'),
-          ("glyph", gt'),
-          ("text", tt'),
-          ("line", lt')
-        ]
-    ts = repTickStyle (cfg ^. #tstyle)
-    gt =
-      maybeRep Nothing (isJust (cfg ^. #gtick)) $
-        bimap
-          (<>)
-          (,)
-          (repGlyphStyle (maybe defaultGlyphTick fst (cfg ^. #gtick)))
-          <<*>> slider (Just "buffer") 0 0.05 0.001 (maybe 0.05 snd (cfg ^. #gtick))
-    tt =
-      maybeRep Nothing (isJust (cfg ^. #ttick)) $
-        bimap
-          (<>)
-          (,)
-          (repTextStyle (maybe defaultTextTick fst (cfg ^. #ttick)))
-          <<*>> slider (Just "buffer") 0 0.05 0.001 (maybe 0.05 snd (cfg ^. #ttick))
-    lt =
-      maybeRep Nothing (isJust (cfg ^. #ltick)) $
-        bimap
-          (<>)
-          (,)
-          (repLineStyle (maybe defaultLineTick fst (cfg ^. #ltick)))
-          <<*>> slider (Just "buffer") (-0.1) 0.1 0.001 (maybe 0 snd (cfg ^. #ltick))
-
-repPoint ::
-  (Monad m) =>
-  Point (Range Double) ->
-  Point Double ->
-  Point Double ->
-  SharedRep m (Point Double)
-repPoint (Point (Range xmin xmax) (Range ymin ymax)) (Point xstep ystep) (Point x y) =
-  bimap
-    (<>)
-    Point
-    (slider (Just "x") xmin xmax xstep x)
-    <<*>> slider (Just "y") ymin ymax ystep y
-
-repPointI ::
-  (Monad m) =>
-  Point (Range Int) ->
-  Point Int ->
-  Point Int ->
-  SharedRep m (Point Int)
-repPointI (Point (Range xmin xmax) (Range ymin ymax)) (Point xstep ystep) (Point x y) =
-  bimap
-    (<>)
-    Point
-    (sliderI (Just "x") xmin xmax xstep x)
-    <<*>> sliderI (Just "y") ymin ymax ystep y
-
-repRect :: (Monad m) => Rect (Range Double) -> Rect Double -> Rect Double -> SharedRep m (Rect Double)
-repRect (Rect (Range xmin xmax) (Range zmin zmax) (Range ymin ymax) (Range wmin wmax)) (Rect xstep zstep ystep wstep) (Rect x z y w) =
-  bimap
-    (\a b c d -> a <> b <> c <> d)
-    Rect
-    (slider (Just "x") xmin xmax xstep x)
-    <<*>> slider (Just "z") zmin zmax zstep z
-    <<*>> slider (Just "y") ymin ymax ystep y
-    <<*>> slider (Just "w") wmin wmax wstep w
-
-repRectOne :: (Monad m) => Rect Double -> SharedRep m (Rect Double)
-repRectOne a = repRect (Rect (Range 0 1) (Range 0 1) (Range 0 1) (Range 0 1)) (Rect 0.01 0.01 0.01 0.01) a
-
-repRounded :: (Monad m) => (Double, Double, Double) -> SharedRep m (Double, Double, Double)
-repRounded (a, b, c) =
-  bimap
-    (\a' b' c' -> a' <> b' <> c')
-    (,,)
-    (slider Nothing 0 1 0.001 a)
-    <<*>> slider Nothing 0 1 0.001 b
-    <<*>> slider Nothing 0 1 0.001 c
-
-repTriple :: (Monad m) => (a, a, a) -> (a -> SharedRep m a) -> SharedRep m (a, a, a)
-repTriple (a, b, c) sr =
-  bimap (\a' b' c' -> a' <> b' <> c') (,,) (sr a) <<*>> sr b <<*>> sr c
-
-repGlyphShape :: (Monad m) => GlyphShape -> SharedRep m GlyphShape
-repGlyphShape sh = bimap hmap mmap sha <<*>> ell <<*>> rsharp <<*>> rround <<*>> tri <<*>> p <<*>> lwidth
-  where
-    sha =
-      dropdownSum
-        takeText
-        id
-        Nothing
-        [ "Circle",
-          "Square",
-          "Triangle",
-          "Ellipse",
-          "RectSharp",
-          "RectRounded",
-          "VLine",
-          "HLine",
-          "Path"
-        ]
-        (glyphText sh)
-    ell = slider Nothing 0.5 2 0.01 defRatio
-    rsharp = slider Nothing 0.5 2 0.01 defRatio
-    rround = repRounded defRounded
-    lwidth = slider (Just "width") 0.001 0.02 0.001 defLwidth
-    tri =
-      repTriple
-        defTriangle
-        ( repPoint
-            (Point (Range 0 1) (Range 0 1))
-            (Point 0.001 0.001)
-        )
-    p = textbox (Just "path") defP
-    hmap sha' ell' rsharp' rround' tri' p' lwidth' =
-      sha'
-        <> subtype ell' (glyphText sh) "Ellipse"
-        <> subtype rsharp' (glyphText sh) "RectSharp"
-        <> subtype rround' (glyphText sh) "RectRounded"
-        <> subtype tri' (glyphText sh) "Triangle"
-        <> subtype lwidth' (glyphText sh) "VLine"
-        <> subtype lwidth' (glyphText sh) "HLine"
-        <> subtype p' (glyphText sh) "Path"
-    mmap sha' ell' rsharp' rround' tri' p' lwidth' =
-      case sha' of
-        "Circle" -> CircleGlyph
-        "Square" -> SquareGlyph
-        "Ellipse" -> EllipseGlyph ell'
-        "RectSharp" -> RectSharpGlyph rsharp'
-        "RectRounded" -> (\(a, b, c) -> RectRoundedGlyph a b c) rround'
-        "Triangle" -> (\(a, b, c) -> TriangleGlyph a b c) tri'
-        "VLine" -> VLineGlyph lwidth'
-        "HLine" -> HLineGlyph lwidth'
-        "Path" -> PathGlyph p'
-        _ -> CircleGlyph
-    defP = case sh of
-      PathGlyph p -> p
-      _ -> mempty
-    defRatio = case sh of
-      EllipseGlyph r -> r
-      RectSharpGlyph r -> r
-      _ -> 1.5
-    defLwidth = case sh of
-      VLineGlyph r -> r
-      HLineGlyph r -> r
-      _ -> 0.005
-    defRounded = case sh of
-      RectRoundedGlyph a b c -> (a, b, c)
-      _ -> (0.884, 2.7e-2, 5.0e-2)
-    defTriangle = case sh of
-      TriangleGlyph a b c -> (a, b, c)
-      _ -> (Point 0.0 0.0, Point 1 1, Point 1 0)
-
-repLegendOptions :: (Monad m) => LegendOptions -> SharedRep m LegendOptions
-repLegendOptions initl =
-  bimap
-    hmap
-    LegendOptions
-    lsize'
-    <<*>> vgap'
-    <<*>> hgap'
-    <<*>> ltext'
-    <<*>> lmax'
-    <<*>> innerPad'
-    <<*>> outerPad'
-    <<*>> legendFrame'
-    <<*>> lplace'
-    <<*>> scale'
-  where
-    lsize' = slider (Just "element size") 0.000 1 0.001 (initl ^. #lsize)
-    hgap' = slider (Just "horizontal gap") 0.000 0.5 0.001 (initl ^. #hgap)
-    vgap' = slider (Just "vertical gap") 0.000 0.5 0.001 (initl ^. #vgap)
-    ltext' = repTextStyle (initl ^. #ltext)
-    lmax' = sliderI (Just "max entries") 0 10 1 (initl ^. #lmax)
-    innerPad' =
-      slider
-        (Just "inner padding")
-        0
-        0.2
-        0.001
-        (initl ^. #innerPad)
-    outerPad' =
-      slider
-        (Just "outer padding")
-        0
-        0.2
-        0.001
-        (initl ^. #outerPad)
-    legendFrame' =
-      maybeRep
-        (Just "frame")
-        (isJust (initl ^. #legendFrame))
-        (repRectStyle (fromMaybe defaultSvgFrame (initl ^. #legendFrame)))
-    lplace' = repPlace (initl ^. #lplace)
-    scale' = slider (Just "scale") 0.01 1 0.001 (initl ^. #lscale)
-    hmap lsize'' vgap'' hgap'' ltext'' lmax'' innerPad'' outerPad'' legendFrame'' lplace'' scale'' =
-      accordion_
-        "accleg"
-        Nothing
-        [ ("Scale", scale'' <> lsize''),
-          ("Pads", innerPad'' <> outerPad'' <> vgap'' <> hgap''),
-          ("Text", ltext''),
-          ("Frame", legendFrame''),
-          ("Place", lplace''),
-          ("Max Elements", lmax'')
-        ]
-
-repChartsWithSharedData ::
-  (Monad m) =>
-  SvgOptions ->
-  HudOptions ->
-  Int ->
-  [Chart Double] ->
-  ([[XY Double]] -> SharedRep m [[XY Double]]) ->
-  SharedRep m (Text, Text)
-repChartsWithSharedData css' hc' maxcs' cs' sxys =
-  bimap
-    hmap
-    mmap
-    cssr
-    <<*>> annsr
-    <<*>> sxys xys'
-    <<*>> hr
-    <<*>> debugFlags
-  where
-    xys' = view #xys <$> cs'
-    anns' = view #annotation <$> cs'
-    hr =
-      repHudOptions
-        2
-        3
-        5
-        defaultAxisOptions
-        (defaultTitle "default")
-        (maybe defaultLegendOptions fst (hc' ^. #hudLegend))
-        (maybe [] snd (hc' ^. #hudLegend))
-        BlankA
-        ""
-        hc'
-    cssr = repSvgOptions css'
-    annsr =
-      listRep
-        (Just "Annotations")
-        "annz"
-        (checkbox Nothing)
-        repAnnotation
-        maxcs'
-        BlankA
-        anns'
-    mmap css'' ann' d' h' debug' =
-      let ch = zipWith Chart ann' d'
-       in ( renderHudOptionsChart css'' h' [] ch,
-            debugHtml debug' css'' h' ch
-          )
-    hmap css'' ann' _ h' debug' =
-      accordion_
-        "acca"
-        Nothing
-        [ ("Svg", css''),
-          ("Annotations", ann'),
-          ("Hud", h'),
-          ("Debug", debug')
-        ]
-
-repChartsWithStaticData ::
-  (Monad m) =>
-  SvgOptions ->
-  HudOptions ->
-  Int ->
-  [Chart Double] ->
-  SharedRep m (Text, Text)
-repChartsWithStaticData css' hc' maxcs' cs' =
-  repChartsWithSharedData css' hc' maxcs' cs' (bipure mempty)
-
-debugHtml :: (Bool, Bool, Bool) -> SvgOptions -> HudOptions -> [Chart Double] -> Text
-debugHtml debug css hc cs =
-  bool
-    mempty
-    ( mconcat $
-        (\x -> "<p style='white-space: pre'>" <> x <> "</p>")
-          <$> [ "<h2>config values</h2>",
-                pShow' css,
-                pShow' hc
-              ]
-    )
-    ((\(a, _, _) -> a) debug)
-    <> bool
-      mempty
-      ( mconcat
-          [ "<h2>chart svg</h2>",
-            "<xmp>",
-            renderHudOptionsChart css hc [] cs,
-            "</xmp>"
-          ]
-      )
-      ((\(_, a, _) -> a) debug)
-    <> bool
-      mempty
-      ( mconcat $
-          (\x -> "<p style='white-space: pre'>" <> x <> "</p>")
-            <$> [ "<h2>chart value</h2>",
-                  pack $ show cs
-                ]
-      )
-      ((\(_, _, a) -> a) debug)
-
-debugFlags :: (Monad m) => SharedRepF m (Html ()) (Bool, Bool, Bool)
-debugFlags =
-  bimap
-    (\a b c -> a <> b <> c)
-    (,,)
-    (checkbox (Just "show hudOptions values") False)
-    <<*>> checkbox (Just "show chart svg") False
-    <<*>> checkbox (Just "show Chart values") False
-
-repHudOptionsDefault :: Monad m => HudOptions -> SharedRep m HudOptions
-repHudOptionsDefault hc =
-  repHudOptions
-    2
-    3
-    5
-    defaultAxisOptions
-    (defaultTitle "default")
-    defaultLegendOptions
-    []
-    BlankA
-    ""
-    hc
-
-repBarOptions ::
-  (Monad m) =>
-  Int ->
-  RectStyle ->
-  TextStyle ->
-  BarOptions ->
-  SharedRep m BarOptions
-repBarOptions nrows defrs defts cfg =
-  bimap hmap BarOptions rs
-    <<*>> ts
-    <<*>> og
-    <<*>> ig
-    <<*>> tg
-    <<*>> tgn
-    <<*>> dv
-    <<*>> fn
-    <<*>> av
-    <<*>> or
-    <<*>> ho
-  where
-    rs =
-      listRep
-        (Just "bar styles")
-        "rs"
-        (checkbox Nothing)
-        repRectStyle
-        nrows
-        defrs
-        (cfg ^. #barRectStyles)
-    ts =
-      listRep
-        (Just "text styles")
-        "ts"
-        (checkbox Nothing)
-        repTextStyle
-        nrows
-        defts
-        (cfg ^. #barTextStyles)
-    og = slider (Just "outer gap") 0.0 1.0 0.001 (cfg ^. #outerGap)
-    ig = slider (Just "inner gap") (-1.0) 1 0.001 (cfg ^. #innerGap)
-    tg = slider (Just "text gap") (-0.05) 0.05 0.001 (cfg ^. #textGap)
-    tgn = slider (Just "neg. text gap") 0 0.1 0.001 (cfg ^. #textGapNegative)
-    dv = checkbox (Just "display values") (cfg ^. #displayValues)
-    fn = repFormatN (cfg ^. #valueFormatN)
-    av = checkbox (Just "accumulate values") (cfg ^. #accumulateValues)
-    or = repDirection (cfg ^. #barOrientation)
-    ho =
-      repHudOptions
-        2
-        3
-        5
-        defaultAxisOptions
-        (defaultTitle "bar options")
-        (maybe defaultLegendOptions fst (cfg ^. #barHudOptions . #hudLegend))
-        (maybe [] snd (cfg ^. #barHudOptions . #hudLegend))
-        BlankA
-        ""
-        (cfg ^. #barHudOptions)
-    hmap rs' ts' og' ig' tg' tgn' dv' fn' av' or' ho' =
-      accordion_
-        "accbo"
-        Nothing
-        [ ("Bar Styles", rs'),
-          ("Text Styles", ts'),
-          ("Gaps", og' <> ig' <> tg' <> tgn'),
-          ("Style", dv' <> fn' <> av' <> or'),
-          ("Hud", ho')
-        ]
-
-repBarData ::
-  (Monad m) =>
-  BarData ->
-  SharedRep m BarData
-repBarData initbd =
-  bimap hmap BarData bd
-    <<*>> rl
-    <<*>> cl
-  where
-    rl =
-      maybeRep
-        Nothing
-        (isJust (initbd ^. #barRowLabels))
-        ( either (const []) id
-            <$> readTextbox (Just "row labels") (fromMaybe [] (initbd ^. #barRowLabels))
-        )
-    cl =
-      maybeRep
-        Nothing
-        (isJust (initbd ^. #barColumnLabels))
-        ( either (const []) id
-            <$> readTextbox (Just "column labels") (fromMaybe [] (initbd ^. #barColumnLabels))
-        )
-    bd =
-      either (const (pure [])) id
-        <$> readTextbox (Just "bar data") (initbd ^. #barData)
-    hmap rl' cl' bd' = rl' <> cl' <> bd'
-
-repPixelOptions ::
-  (Monad m) =>
-  PixelOptions ->
-  SharedRep m PixelOptions
-repPixelOptions cfg =
-  bimap hmap PixelOptions ps
-    <<*>> pg
-    <<*>> pr
-  where
-    ps = repPixelStyle (cfg ^. #poStyle)
-    pg = repPointI (Point (Range 1 100) (Range 1 100)) (Point 1 1) (cfg ^. #poGrain)
-    pr = repRect (Rect (Range 0 5) (Range 0 5) (Range 0 5) (Range 0 5)) (Rect 0.01 0.01 0.01 0.01) (cfg ^. #poRange)
-    hmap ps' pg' pr' =
-      accordion_
-        "accpixel"
-        Nothing
-        [ ("Grain", pg'),
-          ("Range", pr'),
-          ("Style", ps')
-        ]
-
-repPixelLegendOptions ::
-  (Monad m) =>
-  PixelLegendOptions ->
-  SharedRep m PixelLegendOptions
-repPixelLegendOptions cfg =
-  bimap hmap PixelLegendOptions ps
-    <<*>> pt
-    <<*>> pw
-    <<*>> pa
-    <<*>> pl
-  where
-    ps = repPixelStyle (cfg ^. #ploStyle)
-    pt = textbox (Just "title") (cfg ^. #ploTitle)
-    pw = slider (Just "width") 0.0 0.3 0.001 (cfg ^. #ploWidth)
-    pa = repAxisOptions (cfg ^. #ploAxisOptions)
-    pl = repLegendOptions (cfg ^. #ploLegendOptions)
-    hmap ps' pt' pw' pa' pl' =
-      accordion_
-        "accplo"
-        Nothing
-        [ ("Style", ps'),
-          ("Title", pt'),
-          ("Width", pw'),
-          ("Axis", pa'),
-          ("Legend", pl')
-        ]
-
-repBarChart :: (Monad m) => SvgOptions -> BarData -> BarOptions -> SharedRep m (Text, Text)
-repBarChart css bd bo = bimap hmap mmap rcss <<*>> rbd <<*>> rbo <<*>> debugFlags
-  where
-    rcss = repSvgOptions css
-    rbo = repBarOptions 5 defaultRectStyle defaultTextStyle bo
-    rbd = repBarData bd
-    barchartsvg css' bd' bo' =
-      let (hc', cs') = barChart bo' bd'
-       in renderHudOptionsChart css' hc' [] cs'
-    mmap css' bd' bo' debug =
-      ( barchartsvg css' bd' bo',
-        debugHtml debug css' (bo' ^. #barHudOptions) (bars bo' bd')
-      )
-    hmap css' bd' bo' debug =
-      accordion_
-        "accbc"
-        Nothing
-        [ ("Svg", css'),
-          ("Bar Data", bd'),
-          ("Bar Options", bo'),
-          ("Debug", debug)
-        ]
-
-repPixelChart ::
-  (Monad m) =>
-  (SvgOptions, PixelOptions, HudOptions, PixelLegendOptions, Point Double -> Double) ->
-  SharedRep m (Text, Text)
-repPixelChart (css, po, hc, plo, f) = bimap hmap mmap rcss <<*>> rpo <<*>> rhc <<*>> rplo <<*>> debugFlags
-  where
-    rcss = repSvgOptions css
-    rpo = repPixelOptions po
-    rhc = repHudOptionsDefault hc
-    rplo = repPixelLegendOptions plo
-    mmap rcss' rpo' rhc' rplo' debug =
-      let (cs, hs) = pixelfl f rpo' rplo'
-       in ( renderHudOptionsChart rcss' rhc' hs cs,
-            debugHtml debug rcss' rhc' []
-          )
-    hmap rcss' rpo' rhc' rplo' debug =
-      accordion_
-        "accpc"
-        Nothing
-        [ ("Svg", rcss'),
-          ("Hud", rhc'),
-          ("Pixel Options", rpo'),
-          ("Pixel Legend Options", rplo'),
-          ("Debug", debug)
-        ]
-
-repNoData :: (Monad m) => SvgOptions -> Annotation -> HudOptions -> SharedRep m (Text, Text)
-repNoData css ann hc =
-  repChartsWithStaticData css hc 10 [Chart ann [one]]
diff --git a/src/Chart/Pixel.hs b/src/Chart/Pixel.hs
deleted file mode 100644
--- a/src/Chart/Pixel.hs
+++ /dev/null
@@ -1,163 +0,0 @@
-{-# LANGUAGE DataKinds #-}
-{-# LANGUAGE DeriveGeneric #-}
-{-# LANGUAGE OverloadedLabels #-}
-{-# LANGUAGE NoImplicitPrelude #-}
-{-# OPTIONS_GHC -Wall #-}
-
--- | pixel charts
---
--- Opting for a Point or a Rect as concrete data elements that make up an individual chart leaves us with a bit more work to construct a Pixel chart, where colors represent detailed data
-module Chart.Pixel
-  ( PixelOptions (..),
-    defaultPixelOptions,
-    pixels,
-    pixelate,
-    pixelf,
-    pixelfl,
-    pixelLegendChart,
-    PixelLegendOptions (..),
-    defaultPixelLegendOptions,
-    isHori,
-    makePixelTick,
-  )
-where
-
-import Chart.Types
-import Control.Lens
-import Data.Colour
-import Data.FormatN
-import Data.Generics.Labels ()
-import NumHask.Prelude
-import NumHask.Space
-
-data PixelOptions
-  = PixelOptions
-      { poStyle :: PixelStyle,
-        poGrain :: Point Int,
-        poRange :: Rect Double
-      }
-  deriving (Show, Eq, Generic)
-
-defaultPixelOptions :: PixelOptions
-defaultPixelOptions =
-  PixelOptions defaultPixelStyle (Point 10 10) one
-
--- | pixel elements
-data PixelData
-  = PixelData
-      { pixelRect :: Rect Double,
-        pixelColor :: Colour
-      }
-  deriving (Show, Eq, Generic)
-
--- | pixel chart without any hud trimmings
-pixels :: RectStyle -> [PixelData] -> [Chart Double]
-pixels rs ps =
-  ( \(PixelData r c) ->
-      Chart
-        (RectA (rs & #color .~ c))
-        [RectXY r]
-  )
-    <$> ps
-
--- | create pixel data from a function on a Point
-pixelate ::
-  (Point Double -> Double) ->
-  Rect Double ->
-  Grid (Rect Double) ->
-  Colour ->
-  Colour ->
-  ([PixelData], Range Double)
-pixelate f r g c0 c1 = ((\(x, y) -> let c = blend y c0 c1 in PixelData x c) <$> ps', space1 rs)
-  where
-    ps = gridF f r g
-    rs = realToFrac . snd <$> ps
-    rs' = project (space1 rs :: Range Double) (Range 0 1) <$> rs
-    ps' = zip (fst <$> ps) rs'
-
--- | create a pixel chart from a function
-pixelf :: (Point Double -> Double) -> PixelOptions -> ([Chart Double], Range Double)
-pixelf f cfg =
-  first (pixels (cfg ^. #poStyle . #pixelRectStyle)) $
-    pixelate
-      f
-      (cfg ^. #poRange)
-      (cfg ^. #poGrain)
-      (cfg ^. #poStyle . #pixelColorMin)
-      (cfg ^. #poStyle . #pixelColorMax)
-
-pixelfl :: (Point Double -> Double) -> PixelOptions -> PixelLegendOptions -> ([Chart Double], [Hud Double])
-pixelfl f po plo = (cs, [legendHud (plo ^. #ploLegendOptions) (pixelLegendChart dr plo)])
-  where
-    (cs, dr) = pixelf f po
-
-data PixelLegendOptions
-  = PixelLegendOptions
-      {ploStyle :: PixelStyle, ploTitle :: Text, ploWidth :: Double, ploAxisOptions :: AxisOptions, ploLegendOptions :: LegendOptions}
-  deriving (Eq, Show, Generic)
-
-pixelAxisOptions :: AxisOptions
-pixelAxisOptions =
-  AxisOptions
-    Nothing
-    Nothing
-    ( Tick
-        (TickRound (FormatPrec (Just 3)) 4 NoTickExtend)
-        (Just (defaultGlyphTick & #color .~ black & #shape .~ VLineGlyph 0.005, 0.01))
-        (Just (defaultTextTick, 0.03))
-        Nothing
-    )
-    PlaceRight
-
-defaultPixelLegendOptions :: Text -> PixelLegendOptions
-defaultPixelLegendOptions t =
-  PixelLegendOptions defaultPixelStyle t 0.05 pixelAxisOptions pixelLegendOptions
-
-pixelLegendOptions :: LegendOptions
-pixelLegendOptions =
-  defaultLegendOptions
-    & #lplace .~ PlaceRight
-    & #lscale .~ 0.7
-    & #lsize .~ 0.5
-    & #vgap .~ 0.05
-    & #hgap .~ 0.01
-    & #innerPad .~ 0.05
-    & #outerPad .~ 0.02
-    & #ltext . #hsize .~ 0.5
-
-pixelLegendChart :: Range Double -> PixelLegendOptions -> [Chart Double]
-pixelLegendChart dataRange l =
-  padChart (l ^. #ploLegendOptions . #outerPad)
-    . maybe id (\x -> frameChart x (l ^. #ploLegendOptions . #innerPad)) (l ^. #ploLegendOptions . #legendFrame)
-    $ hs
-  where
-    (Range x0 x1) = dataRange
-    a = makePixelTick l pchart
-    pchart
-      | l ^. #ploLegendOptions . #lplace == PlaceBottom
-          || l ^. #ploLegendOptions . #lplace == PlaceTop =
-        Chart (PixelA (l ^. #ploStyle & #pixelGradient .~ 0)) [R x0 x1 0 (l ^. #ploWidth)]
-      | otherwise =
-        Chart (PixelA (l ^. #ploStyle & #pixelGradient .~ (pi / 2))) [R 0 (l ^. #ploWidth) x0 x1]
-    t = Chart (TextA (l ^. #ploLegendOptions . #ltext & #anchor .~ AnchorStart) [l ^. #ploTitle]) [zero]
-    hs = vert (l ^. #ploLegendOptions . #vgap) [a, [t]]
-
-isHori :: PixelLegendOptions -> Bool
-isHori l =
-  l ^. #ploLegendOptions . #lplace == PlaceBottom
-    || l ^. #ploLegendOptions . #lplace == PlaceTop
-
-makePixelTick :: PixelLegendOptions -> Chart Double -> [Chart Double]
-makePixelTick l pchart = phud
-  where
-    r = fromMaybe one (styleBox pchart)
-    r' = bool (Rect 0 (l ^. #ploWidth) 0 (l ^. #ploLegendOptions . #lsize)) (Rect 0 (l ^. #ploLegendOptions . #lsize) 0 (l ^. #ploWidth)) (isHori l)
-    (hs, _) =
-      makeHud
-        r
-        ( mempty & #hudAxes
-            .~ [ l ^. #ploAxisOptions
-                   & #place .~ bool PlaceRight PlaceBottom (isHori l)
-               ]
-        )
-    phud = runHudWith r' r hs [pchart]
diff --git a/src/Chart/Reanimate.hs b/src/Chart/Reanimate.hs
new file mode 100644
--- /dev/null
+++ b/src/Chart/Reanimate.hs
@@ -0,0 +1,326 @@
+{-# LANGUAGE OverloadedLabels #-}
+{-# LANGUAGE OverloadedStrings #-}
+{-# LANGUAGE RebindableSyntax #-}
+{-# LANGUAGE TupleSections #-}
+{-# LANGUAGE NoImplicitPrelude #-}
+{-# OPTIONS_GHC -fno-warn-name-shadowing #-}
+
+-- | Integration of reanimate and chart-svg
+module Chart.Reanimate
+  ( chartSvgTree,
+    chartSvgTreeDef,
+    chartSvgTrees,
+    chartSvgTreesDef,
+    writeChartSvgTree,
+    tree,
+    toPixelRGBA8,
+  )
+where
+
+import Chart as C hiding (transform, Line)
+import Codec.Picture.Types
+import Control.Lens hiding (transform)
+import qualified Data.Attoparsec.Text as A
+import Graphics.SvgTree.PathParser
+import Graphics.SvgTree.Types as SvgTree hiding (Point, Text)
+import Linear.V2
+import NumHask.Prelude hiding (fold)
+import qualified Graphics.SvgTree.CssTypes as Css
+import qualified Graphics.SvgTree as SvgTree
+import Reanimate
+import NumHask.Space.Types (width)
+import Graphics.SvgTree.Printer (ppDocument)
+
+-- | Render a 'ChartSvg' to a 'Tree'
+--
+-- Alters the reanimate default viewbox of 16:9, and simplifies the SVG.
+chartSvgTree :: ChartSvg -> Tree
+chartSvgTree cs = simplify . withViewBox vb . mkGroup $ ts
+  where
+    (ts, r, _) = chartSvgTrees cs
+    (Rect x z y w) = r
+    vb = (x, -y, z-x, w-y)
+
+-- | Render a 'ChartSvg' to a 'Tree' with the default viewbox
+chartSvgTreeDef :: ChartSvg -> Tree
+chartSvgTreeDef = simplify . mkGroup . chartSvgTreesDef
+
+-- | Render a 'ChartSvg' to 'Tree's, the fitted chart viewbox, and the suggested SVG dimensions
+--
+chartSvgTrees :: ChartSvg -> ([Tree], Rect Double, Point Double)
+chartSvgTrees cs = (ts, rect', size')
+  where
+    so = view #svgOptions cs
+    ho = view #hudOptions cs
+    hl = view #hudList cs
+    cl = view #chartList cs
+    penult = case view #chartAspect so of
+      FixedAspect _ -> styleBoxesS cl
+      CanvasAspect _ -> dataBoxesS cl
+      ChartAspect -> styleBoxesS cl
+      UnadjustedAspect -> dataBoxesS cl
+    clAspect = cl &
+      runHud penult [chartAspectHud (so ^. #chartAspect)] &
+      maybe id (\x -> frameChart x (fromMaybe 0 (view #innerPad so)))
+        (view #chartFrame so)
+    (hlExtra, clExtra) = makeHud (padBox $ dataBoxes clAspect) ho
+    clAll = clAspect <> clExtra
+    hlAll = hl <> hlExtra
+    ts = fmap (SvgTree.cssApply (cssRules (view #cssOptions so)) . tree)
+      (runHud (initialCanvas (so ^. #chartAspect) clAll) hlAll clAll)
+    rect' = styleBoxesS clAll & maybe id padRect (view #outerPad so)
+    Point w h = NumHask.Space.Types.width rect'
+    size' = Point (view #svgHeight so/h*w) (view #svgHeight so)
+
+-- | Render a 'ChartSvg' to 'Tree's at the standard reanimate viewbox
+--
+chartSvgTreesDef :: ChartSvg -> [Tree]
+chartSvgTreesDef cs = ts
+  where
+    so = view #svgOptions cs
+    ho = view #hudOptions cs
+    hl = view #hudList cs
+    cl = view #chartList cs
+    clAspect = projectXYs (Rect (-8.0) 8.0 (-4.5) 4.5) cl
+    (hlExtra, clExtra) = makeHud (padBox $ dataBoxes clAspect) ho
+    clAll = clAspect <> clExtra
+    hlAll = hl <> hlExtra
+    ts = fmap (SvgTree.cssApply (cssRules (view #cssOptions so)) . tree)
+      (runHud (initialCanvas (so ^. #chartAspect) clAll) hlAll clAll)
+
+-- | render Charts to a Document using the supplied size and viewbox.
+renderToDocument :: CssOptions -> Point Double -> Rect Double -> [Tree] -> Document
+renderToDocument csso (Point w' h') vb ts =
+  Document
+    ((\(Rect x z y w) -> Just (x, - w, z - x, w - y)) vb)
+    (Just (Num w'))
+    (Just (Num h'))
+    (SvgTree.cssApply (cssRules csso) <$> ts)
+    (unpack "")
+    ""
+    (PreserveAspectRatio False AlignNone Nothing)
+
+-- | write a 'ChartSvg' to a file via conversion to a reanimate 'Tree' structure.
+writeChartSvgTree :: FilePath -> ChartSvg -> IO ()
+writeChartSvgTree fp cs = writeFile fp . pack . ppDocument $ doc
+  where
+    doc = renderToDocument (view (#svgOptions . #cssOptions) cs) size' rect' ts'
+    (ts', rect', size') = chartSvgTrees cs
+
+cssRules :: CssOptions -> [Css.CssRule]
+cssRules UseCssCrisp = [cssCrisp']
+cssRules UseGeometricPrecision = [cssGeometricPrecision]
+cssRules NoCssOptions = []
+
+-- | crisp edges css
+cssGeometricPrecision :: Css.CssRule
+cssGeometricPrecision = Css.CssRule [] [Css.CssDeclaration "shape-rendering" [[Css.CssString "geometricPrecision"]]]
+
+cssCrisp' :: Css.CssRule
+cssCrisp' = Css.CssRule [] [Css.CssDeclaration "shape-rendering" [[Css.CssString "crispEdges"]]]
+
+-- | Rectange svg
+treeRect :: Rect Double -> Tree
+treeRect a =
+  RectangleTree $ rectSvg a defaultSvg
+
+-- | Text svg
+treeText :: TextStyle -> Text -> Point Double -> Tree
+treeText s t p =
+  TextTree Nothing (textAt (pointSvg p) t)
+    & maybe id (\x -> drawAttributes %~ rotatePDA x p) (s ^. #rotation)
+
+-- | GlyphShape to svg Tree
+treeShape :: GlyphShape -> Double -> Point Double -> Tree
+treeShape CircleGlyph s p =
+  CircleTree $ Circle mempty (pointSvg p) (Num (s / 2))
+treeShape SquareGlyph s p = treeRect (move p ((s *) <$> one))
+treeShape (RectSharpGlyph x') s p =
+  treeRect (move p (C.scale (Point s (x' * s)) one))
+treeShape (RectRoundedGlyph x'' rx ry) s p =
+  RectangleTree
+    . rectSvg (addPoint p $ C.scale (Point s (x'' * s)) one)
+    . (rectCornerRadius .~ (Just $ Num rx, Just $ Num ry))
+    $ defaultSvg
+treeShape (TriangleGlyph (Point xa ya) (Point xb yb) (Point xc yc)) s p =
+  PolygonTree
+    . (polygonPoints .~ rps)
+    $ (drawAttributes %~ translateDA p) defaultSvg
+  where
+    rps =
+      [ V2 (s * xa) (- s * ya),
+        V2 (s * xb) (- s * yb),
+        V2 (s * xc) (- s * yc)
+      ]
+treeShape (EllipseGlyph x') s p =
+  EllipseTree $
+    Ellipse
+      mempty
+      (pointSvg p)
+      (Num $ s / 2)
+      (Num $ (x' * s) / 2)
+treeShape (VLineGlyph x') s (Point x y) =
+  LineTree $
+    Line
+      (mempty & strokeWidth .~ Last (Just (Num x')))
+      (pointSvg (Point x (y - s / 2)))
+      (pointSvg (Point x (y + s / 2)))
+treeShape (HLineGlyph x') s (Point x y) =
+  LineTree $
+    Line
+      (mempty & strokeWidth .~ Last (Just (Num x')))
+      (pointSvg (Point (x - s / 2) y))
+      (pointSvg (Point (x + s / 2) y))
+treeShape (PathGlyph path) _ p =
+  PathTree $ Path ((drawAttributes %~ translateDA p) defaultSvg) path'
+  where
+    path' = either mempty (: []) $ A.parseOnly command path
+
+-- | GlyphStyle to svg Tree
+treeGlyph :: GlyphStyle -> Point Double -> Tree
+treeGlyph s p =
+  treeShape (s ^. #shape) (s ^. #size) p
+    & maybe id (\x -> drawAttributes %~ rotatePDA x p) (s ^. #rotation)
+
+-- | line svg
+treeLine :: [Point Double] -> Tree
+treeLine xs =
+  PolyLineTree
+    . (polyLinePoints .~ ((\(Point x y) -> V2 x (- y)) <$> xs))
+    $ defaultSvg
+
+-- | GlyphStyle to svg Tree
+treePath :: [PathInfo Double] -> [Point Double] -> Tree
+treePath s p = PathTree $ Path mempty (zipWith (curry toPathCommand) s p)
+
+-- | convert a 'Chart' to a 'Tree'
+--
+tree :: Chart Double -> Tree
+tree (Chart (TextA s ts) xs) =
+  groupTrees (daText s) (zipWith (treeText s) ts (toPoint <$> xs))
+tree (Chart (GlyphA s) xs) =
+  groupTrees (daGlyph s) (treeGlyph s . toPoint <$> xs)
+tree (Chart (LineA s) xs) =
+  groupTrees (daLine s) [treeLine (toPoint <$> xs)]
+tree (Chart (RectA s) xs) =
+  groupTrees (daRect s) (treeRect <$> (toRect <$> xs))
+tree (Chart (PathA s pis) xs) =
+  groupTrees (daPath s) [treePath pis (toPoint <$> xs)]
+tree (Chart BlankA _) =
+  groupTrees mempty []
+
+-- | add drawing attributes as a group svg wrapping a [Tree]
+groupTrees :: DrawAttributes -> [Tree] -> Tree
+groupTrees da' tree' =
+  GroupTree (drawAttributes %~ (<> da') $ groupChildren .~ tree' $ defaultSvg)
+
+-- * DrawAttribute computations
+daRect :: RectStyle -> DrawAttributes
+daRect o =
+  mempty &
+  (strokeWidth .~ Last (Just $ Num (o ^. #borderSize))) &
+  (strokeColor .~ Last (Just $ ColorRef (toPixelRGBA8 $ o ^. #borderColor))) &
+  (strokeOpacity ?~ realToFrac (opac $ o ^. #borderColor)) &
+  (fillColor .~ Last (Just $ ColorRef (toPixelRGBA8 $ o ^. #color))) &
+  (fillOpacity ?~ realToFrac (opac $ o ^. #color))
+
+daText :: () => TextStyle -> DrawAttributes
+daText o =
+  mempty &
+  (fontSize .~ Last (Just $ Num (o ^. #size))) &
+  (strokeWidth .~ Last (Just $ Num 0)) &
+  (strokeColor .~ Last (Just FillNone)) &
+  (fillColor .~ Last (Just $ ColorRef (toPixelRGBA8 $ o ^. #color))) &
+  (fillOpacity ?~ realToFrac (opac $ o ^. #color)) &
+  (textAnchor .~ Last (Just (toTextAnchor $ o ^. #anchor))) &
+  maybe
+      id
+      (\(Point x y) -> transform ?~ [Translate x (-y)])
+      (o ^. #translate)
+  where
+    toTextAnchor :: Anchor -> TextAnchor
+    toTextAnchor AnchorMiddle = TextAnchorMiddle
+    toTextAnchor AnchorStart = TextAnchorStart
+    toTextAnchor AnchorEnd = TextAnchorEnd
+
+daGlyph :: GlyphStyle -> DrawAttributes
+daGlyph o =
+  mempty &
+  (strokeWidth .~ Last (Just $ Num (o ^. #borderSize))) &
+  (strokeColor .~
+   Last (Just $ ColorRef (toPixelRGBA8 $ o ^. #borderColor))) &
+  (strokeOpacity ?~ realToFrac (opac $ o ^. #borderColor)) &
+  (fillColor .~ Last (Just $ ColorRef (toPixelRGBA8 $ o ^. #color))) &
+  (fillOpacity ?~ realToFrac (opac $ o ^. #color)) &
+  maybe id (\(Point x y) -> transform ?~ [Translate x (-y)]) (o ^. #translate)
+
+daLine :: LineStyle -> DrawAttributes
+daLine o =
+  mempty &
+  (strokeWidth .~ Last (Just $ Num (o ^. #width))) &
+  (strokeColor .~ Last (Just $ ColorRef (toPixelRGBA8 $ o ^. #color))) &
+  (strokeOpacity ?~ realToFrac (opac $ o ^. #color)) &
+  (fillColor .~ Last (Just FillNone)) &
+  maybe id (\x -> strokeLineCap .~ Last (Just $ fromLineCap' x))
+  (o ^. #linecap) &
+  maybe id (\x -> strokeLineJoin .~ Last (Just $ fromLineJoin' x))
+  (o ^. #linejoin) &
+  maybe id (\x -> strokeOffset .~ Last (Just $ Num x))
+  (o ^. #dashoffset) &
+  maybe id (\xs -> strokeDashArray .~ Last (Just (Num <$> xs)))
+  (o ^. #dasharray)
+
+fromLineCap' :: LineCap -> Cap
+fromLineCap' LineCapButt = CapButt
+fromLineCap' LineCapRound = CapRound
+fromLineCap' LineCapSquare = CapSquare
+
+fromLineJoin' :: C.LineJoin -> SvgTree.LineJoin
+fromLineJoin' LineJoinMiter = JoinMiter
+fromLineJoin' LineJoinBevel = JoinBevel
+fromLineJoin' LineJoinRound = JoinRound
+
+daPath :: PathStyle -> DrawAttributes
+daPath o =
+  mempty &
+  (strokeWidth .~ Last (Just $ Num (o ^. #borderSize))) &
+  (strokeColor .~ Last
+   (Just $ ColorRef (toPixelRGBA8 $ o ^. #borderColor))) &
+  (strokeOpacity ?~ realToFrac (opac $ o ^. #borderColor)) &
+  (fillColor .~ Last (Just $ ColorRef (toPixelRGBA8 $ o ^. #color))) &
+  (fillOpacity ?~ realToFrac (opac $ o ^. #color))
+
+-- * svg primitives
+
+-- | Convert to reanimate color primitive.
+toPixelRGBA8 :: Colour -> PixelRGBA8
+toPixelRGBA8 (Colour r g b o) =
+  PixelRGBA8
+    (fromIntegral (floor $ r * 256 :: Int))
+    (fromIntegral (floor $ g * 256 :: Int))
+    (fromIntegral (floor $ b * 256 :: Int))
+    (fromIntegral (floor $ o * 256 :: Int))
+
+-- | convert a point to the svg co-ordinate system
+-- The svg coordinate system has the y-axis going from top to bottom.
+pointSvg :: Point Double -> (Number, Number)
+pointSvg (Point x y) = (Num x, Num (- y))
+
+-- | A DrawAttributes to rotate around a point by x degrees.
+rotatePDA :: (HasDrawAttributes s) => Double -> Point Double -> s -> s
+rotatePDA a (Point x y) s = s & transform %~ (Just . maybe r (<> r))
+  where
+    r = [Rotate (-a*180/pi) (Just (x, -y))]
+
+-- | A DrawAttributes to translate by a Point.
+translateDA :: (HasDrawAttributes s) => Point Double -> s -> s
+translateDA (Point x' y') =
+  transform
+    %~ (\x -> Just $ maybe [Translate x' (- y')] (<> [Translate x' (- y')]) x)
+
+-- | convert a Rect to the svg co-ordinate system
+rectSvg :: Rect Double -> Rectangle -> Rectangle
+rectSvg (Rect x z y w) =
+  (rectUpperLeftCorner .~ (Num x, Num (- w)))
+    . (rectWidth .~ Just (Num (z - x)))
+    . (rectHeight .~ Just (Num (w - y)))
diff --git a/src/Chart/Render.hs b/src/Chart/Render.hs
--- a/src/Chart/Render.hs
+++ b/src/Chart/Render.hs
@@ -1,30 +1,47 @@
+{-# LANGUAGE DeriveGeneric #-}
 {-# LANGUAGE FlexibleContexts #-}
 {-# LANGUAGE OverloadedLabels #-}
 {-# LANGUAGE OverloadedStrings #-}
 {-# LANGUAGE NoImplicitPrelude #-}
 {-# OPTIONS_GHC -Wall #-}
 
+-- | Rendering charts to SVG.
+--
+-- Note that type signatures are tightened to Double as sane SVG rendering suggests.
 module Chart.Render
-  ( scaleCharts,
-    getAspect,
-    getViewbox,
-    getSize,
-    renderToSvg,
+  ( ChartSvg (..),
+    chartSvg,
+    chartSvgDefault,
+    chartSvgHud,
     renderChartsWith,
-    renderCharts,
-    renderCharts_,
-    writeChartsWith,
-    writeCharts,
-    writeCharts_,
     renderHudChart,
-    renderHudOptionsChart,
-    writeHudOptionsChart,
-    svg2_,
+    writeChartSvg,
+    writeChartSvgDefault,
+    writeChartSvgHud,
+    svg2Tag,
     cssCrisp,
+    geometricPrecision,
+    svg,
+    terms,
+    makeAttribute,
+
+    -- * Augmentation
+    ChartExtra (..),
+    toChartExtra,
+    renderChartExtrasWith,
+
+    -- * low-level conversions
+    attsRect,
+    attsText,
+    attsGlyph,
+    attsLine,
+    attsPath,
   )
 where
 
 import Chart.Types
+import Data.Colour
+import Data.Path
 import Control.Lens hiding (transform)
 import Data.Generics.Labels ()
 import qualified Data.Text.Lazy as Lazy
@@ -32,43 +49,48 @@
 import qualified Lucid.Base as Lucid
 import Lucid.Base
 import NumHask.Prelude
-import NumHask.Space hiding (Element)
+import NumHask.Space as NH hiding (Element)
+import qualified Data.Text as Text
 
--- | scale chart data, projecting to the supplied Rect, and expanding the resultant Rect for chart style if necessary.
---
--- Note that this modifies the underlying chart data.
--- FIXME: do a divide to make an exact fit
-scaleCharts ::
-  Rect Double ->
-  [Chart Double] ->
-  (Rect Double, [Chart Double])
-scaleCharts cs r = (fromMaybe one $ styleBoxes cs', cs')
-  where
-    cs' = projectXYs cs r
+-- | Specification of a chart for rendering to SVG
+data ChartSvg
+  = ChartSvg
+      { svgOptions :: SvgOptions,
+        hudOptions :: HudOptions,
+        hudList :: [Hud Double],
+        chartList :: [Chart Double]
+      }
+  deriving (Generic)
 
-getAspect :: SvgAspect -> [Chart Double] -> Double
-getAspect (ManualAspect a) _ = a
-getAspect ChartAspect cs = toAspect . fromMaybe one $ styleBoxes cs
+instance Semigroup ChartSvg where
+  (<>) (ChartSvg _ o h c) (ChartSvg s' o' h' c') =
+    ChartSvg s' (o <> o') (h <> h') (c <> c')
 
-getSize :: SvgOptions -> [Chart Double] -> Point Double
-getSize o cs = case view #svgAspect o of
-  ManualAspect a -> (view #svgHeight o *) <$> Point a 1
-  ChartAspect -> (\(Rect x z y w) -> Point (view #svgHeight o * (z - x)) (view #svgHeight o * (w - y))) . fromMaybe one $ styleBoxes cs
+instance Monoid ChartSvg where
+  mempty = ChartSvg defaultSvgOptions mempty [] []
 
-getViewbox :: SvgOptions -> [Chart Double] -> Rect Double
-getViewbox o cs =
-  bool asp (fromMaybe one $ styleBoxes cs) (NoScaleCharts == view #scaleCharts' o)
-  where
-    asp =
-      case view #svgAspect o of
-        ManualAspect a -> Rect (a * (-0.5)) (a * 0.5) (-0.5) 0.5
-        ChartAspect -> fromMaybe one $ styleBoxes cs
+-- | Specification of a chart for rendering to SVG
+data ChartSvgExtra
+  = ChartSvgExtra
+      { svgOptionsExtra :: SvgOptions,
+        hudOptionsExtra :: HudOptions,
+        hudListExtra :: [Hud Double],
+        chartExtraList :: [ChartExtra Double]
+      }
+  deriving (Generic)
 
+instance Semigroup ChartSvgExtra where
+  (<>) (ChartSvgExtra _ o h c) (ChartSvgExtra s' o' h' c') =
+    ChartSvgExtra s' (o <> o') (h <> h') (c <> c')
+
+instance Monoid ChartSvgExtra where
+  mempty = ChartSvgExtra defaultSvgOptions mempty [] []
+
 -- * rendering
 
 -- | @svg@ element + svg 2 attributes
-svg2_ :: Term [Attribute] (s -> t) => s -> t
-svg2_ m =
+svg2Tag :: Term [Attribute] (s -> t) => s -> t
+svg2Tag m =
   svg_
     [ Lucid.makeAttribute "xmlns" "http://www.w3.org/2000/svg",
       Lucid.makeAttribute "xmlns:xlink" "http://www.w3.org/1999/xlink"
@@ -78,9 +100,9 @@
 renderToSvg :: CssOptions -> Point Double -> Rect Double -> [Chart Double] -> Html ()
 renderToSvg csso (Point w' h') (Rect x z y w) cs =
   with
-    ( svg2_
-        ( bool id (cssCrisp <>) (csso == UseCssCrisp) $
-            chartDefs cs <> mconcat (svg <$> cs)
+    ( svg2Tag
+        ( cssText csso <>
+            mconcat (svg <$> cs)
         )
     )
     [ width_ (show w'),
@@ -88,57 +110,340 @@
       makeAttribute "viewBox" (show x <> " " <> show (- w) <> " " <> show (z - x) <> " " <> show (w - y))
     ]
 
+renderToSvgExtra :: CssOptions -> Point Double -> Rect Double -> [ChartExtra Double] -> Html ()
+renderToSvgExtra csso (Point w' h') (Rect x z y w) cs =
+  with
+    ( svg2Tag
+        ( cssText csso <>
+            mconcat (svgExtra <$> cs)
+        )
+    )
+    [ width_ (show w'),
+      height_ (show h'),
+      makeAttribute "viewBox" (show x <> " " <> show (- w) <> " " <> show (z - x) <> " " <> show (w - y))
+    ]
+
+cssText :: CssOptions -> Html ()
+cssText UseCssCrisp = cssCrisp
+cssText UseGeometricPrecision = geometricPrecision
+cssText NoCssOptions = mempty
+
+-- | crisp edges css
 cssCrisp :: Html ()
-cssCrisp = style_ [type_ "text/css"] ("{ shape-rendering: 'crispEdges'; }" :: Text)
+cssCrisp = style_ [type_ "text/css"] ("* { shape-rendering: crispEdges; }" :: Text)
 
--- | render Charts with the supplied css options, size and viewbox.
-renderCharts_ :: CssOptions -> Point Double -> Rect Double -> [Chart Double] -> Text
-renderCharts_ csso p r cs =
-  Lazy.toStrict $ renderText (renderToSvg csso p r cs)
+-- | crisp edges css
+geometricPrecision :: Html ()
+geometricPrecision = style_ [type_ "text/css"] ("* { shape-rendering: geometricPrecision; }" :: Text)
 
 -- | render Charts with the supplied options.
 renderChartsWith :: SvgOptions -> [Chart Double] -> Text
 renderChartsWith so cs =
-  Lazy.toStrict $ renderText (renderToSvg (so ^. #useCssCrisp) (getSize so cs'') r' cs'')
+  Lazy.toStrict $ renderText (renderToSvg (so ^. #cssOptions) size' rect' cs')
   where
-    r' = r & maybe id padRect (so ^. #outerPad)
-    cs'' =
-      cs'
-        & maybe id (\x -> frameChart x (fromMaybe 0 (so ^. #innerPad))) (so ^. #chartFrame)
-    (r, cs') =
-      bool
-        (getViewbox so cs, cs)
-        (scaleCharts (getViewbox so cs) cs)
-        (ScaleCharts == so ^. #scaleCharts')
+    rect' = styleBoxesS cs' & maybe id padRect (so ^. #outerPad)
+    cs' =
+      cs &
+      runHud penult [chartAspectHud (so ^. #chartAspect)] &
+      maybe id (\x -> frameChart x (fromMaybe 0 (so ^. #innerPad)))
+        (so ^. #chartFrame)
+    Point w h = NH.width rect'
+    size' = Point ((so ^. #svgHeight)/h*w) (so ^. #svgHeight)
+    penult = case so ^. #chartAspect of
+      FixedAspect _ -> styleBoxesS cs
+      CanvasAspect _ -> dataBoxesS cs
+      ChartAspect -> styleBoxesS cs
+      UnadjustedAspect -> dataBoxesS cs
 
--- | render charts with the default options.
-renderCharts :: [Chart Double] -> Text
-renderCharts = renderChartsWith defaultSvgOptions
+-- | render ChartExtras with the supplied options.
+renderChartExtrasWith :: SvgOptions -> [ChartExtra Double] -> Text
+renderChartExtrasWith so cs =
+  Lazy.toStrict $ renderText (renderToSvgExtra (so ^. #cssOptions) size' rect' cs')
+  where
+    cs' = zipWith (\(ChartExtra _ l a h') c' -> ChartExtra c' l a h') cs (csFinalize csa)
+    rect' = styleBoxesS (csFinalize csa) & maybe id padRect (so ^. #outerPad)
+    csFinalize =
+      maybe id (\x -> frameChart x (fromMaybe 0 (so ^. #innerPad)))
+        (so ^. #chartFrame) .
+      runHud penult [chartAspectHud (so ^. #chartAspect)]
+    Point w h = NH.width rect'
+    size' = Point ((so ^. #svgHeight)/h*w) (so ^. #svgHeight)
+    csa = fmap (view #chartActual) cs
+    penult = case so ^. #chartAspect of
+      FixedAspect _ -> styleBoxesS csa
+      CanvasAspect _ -> dataBoxesS csa
+      ChartAspect -> styleBoxesS csa
+      UnadjustedAspect -> dataBoxesS csa
 
-writeChartsWith :: FilePath -> SvgOptions -> [Chart Double] -> IO ()
-writeChartsWith fp so cs = writeFile fp (renderChartsWith so cs)
+-- | render charts with the supplied svg options and huds
+renderHudChart :: SvgOptions -> [Hud Double] -> [Chart Double] -> Text
+renderHudChart so hs cs = renderChartsWith so (runHud (initialCanvas (so ^. #chartAspect) cs) hs cs)
 
-writeCharts :: FilePath -> [Chart Double] -> IO ()
-writeCharts fp cs = writeFile fp (renderCharts cs)
+-- | Render a chart using the supplied svg and hud config.
+--
+-- >>> chartSvg mempty
+-- "<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"300.0\" viewBox=\"-0.52 -0.52 1.04 1.04\" width=\"300.0\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"></svg>"
+chartSvg :: ChartSvg -> Text
+chartSvg (ChartSvg so ho hs cs) = renderHudChart so (hs <> hs') (cs <> cs')
+  where
+    (hs', cs') = makeHud (padBox $ dataBoxes cs) ho
 
--- | write Charts to a file with the supplied css options, size and viewbox.
-writeCharts_ :: FilePath -> CssOptions -> Point Double -> Rect Double -> [Chart Double] -> IO ()
-writeCharts_ fp csso p r cs =
-  writeFile fp (renderCharts_ csso p r cs)
+-- | Render a chart using the default svg options and no hud.
+--
+-- >>> chartSvgDefault [] == chartSvg mempty
+-- True
+chartSvgDefault :: [Chart Double] -> Text
+chartSvgDefault cs = chartSvg $ mempty & #chartList .~ cs
 
--- * rendering huds and charts
+-- | Render a chart using default svg and hud options.
+--
+-- >>> chartSvgHud [] == (chartSvg $ mempty & #hudOptions .~ defaultHudOptions)
+-- True
+chartSvgHud :: [Chart Double] -> Text
+chartSvgHud cs =
+  chartSvg $
+    mempty
+      & #hudOptions .~ defaultHudOptions
+      & #chartList .~ cs
 
--- | Render some huds and charts.
-renderHudChart :: SvgOptions -> [Hud Double] -> [Chart Double] -> Text
-renderHudChart so hs cs = renderChartsWith so (runHud (getViewbox so cs) hs cs)
+-- | Write to a file.
+writeChartSvg :: FilePath -> ChartSvg -> IO ()
+writeChartSvg fp cs =
+  writeFile fp (chartSvg cs)
 
--- | Render a chart using the supplied svg and hud config.
--- FIXME: fixRect usage
-renderHudOptionsChart :: SvgOptions -> HudOptions -> [Hud Double] -> [Chart Double] -> Text
-renderHudOptionsChart so hc hs cs = renderHudChart so (hs <> hs') (cs <> cs')
+-- | Write a chart to a file with default svg options and no hud.
+writeChartSvgDefault :: FilePath -> [Chart Double] -> IO ()
+writeChartSvgDefault fp cs = writeChartSvg fp (mempty & #chartList .~ cs)
+
+-- | Write a chart to a file with default svg and hud options.
+writeChartSvgHud :: FilePath -> [Chart Double] -> IO ()
+writeChartSvgHud fp cs =
+  writeChartSvg
+    fp
+    ( mempty
+        & #chartList .~ cs
+        & #hudOptions .~ defaultHudOptions
+    )
+
+-- | Rectangle svg
+svgRect :: Rect Double -> Lucid.Html ()
+svgRect (Rect x z y w) =
+  terms
+    "rect"
+    [ width_ (show $ z - x),
+      height_ (show $ w - y),
+      term "x" (show x),
+      term "y" (show $ - w)
+    ]
+
+-- | Text svg
+svgText :: TextStyle -> Text -> Point Double -> Lucid.Html ()
+svgText s t p@(Point x y) =
+  term
+    "text"
+    ( [ term "x" (show x),
+        term "y" (show $ - y)
+      ]
+        <> maybe [] (\x' -> [term "transform" (toRotateText x' p)]) (s ^. #rotation)
+    )
+    (toHtmlRaw t)
+
+-- | line svg
+svgLine :: [Point Double] -> Lucid.Html ()
+svgLine [] = mempty
+svgLine xs = terms "polyline" [term "points" (toPointsText xs)]
   where
-    (hs', cs') = makeHud (fixRect $ dataBox cs) hc
+    toPointsText xs' = Text.intercalate "\n" $ (\(Point x y) -> show x <> "," <> show (- y)) <$> xs'
 
-writeHudOptionsChart :: FilePath -> SvgOptions -> HudOptions -> [Hud Double] -> [Chart Double] -> IO ()
-writeHudOptionsChart fp so hc hs cs =
-  writeFile fp (renderHudOptionsChart so hc hs cs)
+-- | GlyphShape to svg Tree
+svgShape :: GlyphShape -> Double -> Point Double -> Lucid.Html ()
+svgShape CircleGlyph s (Point x y) =
+  terms
+    "circle"
+    [ term "cx" (show x),
+      term "cy" (show $ - y),
+      term "r" (show $ 0.5 * s)
+    ]
+svgShape SquareGlyph s p =
+  svgRect (move p ((s *) <$> one))
+svgShape (RectSharpGlyph x') s p =
+  svgRect (move p (NH.scale (Point s (x' * s)) one))
+svgShape (RectRoundedGlyph x' rx ry) s p =
+  terms
+    "rect"
+    [ term "width" (show $ z - x),
+      term "height" (show $ w - y),
+      term "x" (show x),
+      term "y" (show $ - w),
+      term "rx" (show rx),
+      term "ry" (show ry)
+    ]
+  where
+    (Rect x z y w) = move p (NH.scale (Point s (x' * s)) one)
+svgShape (TriangleGlyph (Point xa ya) (Point xb yb) (Point xc yc)) s p =
+  terms
+    "polygon"
+    [ term "transform" (toTranslateText p),
+      term "points" (show (s * xa) <> "," <> show (- (s * ya)) <> " " <> show (s * xb) <> "," <> show (- (s * yb)) <> " " <> show (s * xc) <> "," <> show (- (s * yc)))
+    ]
+svgShape (EllipseGlyph x') s (Point x y) =
+  terms
+    "ellipse"
+    [ term "cx" (show x),
+      term "cy" (show $ - y),
+      term "rx" (show $ 0.5 * s),
+      term "ry" (show $ 0.5 * s * x')
+    ]
+svgShape (VLineGlyph _) s (Point x y) =
+  terms "polyline" [term "points" (show x <> "," <> show (- (y - s / 2)) <> "\n" <> show x <> "," <> show (- (y + s / 2)))]
+svgShape (HLineGlyph _) s (Point x y) =
+  terms "polyline" [term "points" (show (x - s / 2) <> "," <> show (- y) <> "\n" <> show (x + s / 2) <> "," <> show (- y))]
+svgShape (PathGlyph path) s p =
+  terms "path" [term "d" path, term "transform" (toTranslateText p <> " " <> toScaleText s)]
+
+-- | GlyphStyle to svg Tree
+svgGlyph :: GlyphStyle -> Point Double -> Lucid.Html ()
+svgGlyph s p =
+  svgShape (s ^. #shape) (s ^. #size) p
+    & maybe id (\r -> term "g" [term "transform" (toRotateText r p)]) (s ^. #rotation)
+
+-- | Path svg
+svgPath :: [PathInfo Double] -> [Point Double] -> Lucid.Html ()
+svgPath _ [] = mempty
+svgPath _ [_] = mempty
+svgPath infos ps =
+  terms "path" [term "d" (toPathAbsolutes (zip infos ps))]
+
+svgAtts :: Annotation -> [Attribute]
+svgAtts (TextA s _) = attsText s
+svgAtts (GlyphA s) = attsGlyph s
+svgAtts (LineA s) = attsLine s
+svgAtts (RectA s) = attsRect s
+svgAtts (PathA s _) = attsPath s
+svgAtts BlankA = mempty
+
+svgHtml :: Chart Double -> Lucid.Html ()
+svgHtml (Chart (TextA s ts) xs) =
+  mconcat $ zipWith (\t p -> svgText s t (toPoint p)) ts xs
+svgHtml (Chart (GlyphA s) xs) =
+  mconcat $ svgGlyph s . toPoint <$> xs
+svgHtml (Chart (LineA _) xs) =
+  svgLine $ toPoint <$> xs
+svgHtml (Chart (RectA _) xs) =
+  mconcat $ svgRect . toRect <$> xs
+svgHtml (Chart (PathA _ infos) xs) =
+  svgPath infos $ toPoint <$> xs
+svgHtml (Chart BlankA _) = mempty
+
+-- | Low-level conversion of a Chart to svg
+svg :: Chart Double -> Lucid.Html ()
+svg c = term "g" (svgAtts $ c ^. #annotation) (svgHtml c)
+
+-- | render extra attributes and html
+svgExtra :: ChartExtra Double -> Lucid.Html ()
+svgExtra (ChartExtra c l' as h) =
+  case l' of
+    Nothing -> x
+    Just l ->
+       term "a" [term "xlink:href" l :: Lucid.Attribute] x
+  where
+    x = term "g" (svgAtts (c ^. #annotation) <> as) (svgHtml c <> h)
+
+-- | Make Lucid Html given term and attributes
+terms :: Text -> [Lucid.Attribute] -> Lucid.Html ()
+terms t = with $ makeXmlElementNoEnd t
+
+-- | RectStyle to Attributes
+attsRect :: RectStyle -> [Lucid.Attribute]
+attsRect o =
+  [ term "stroke-width" (show $ o ^. #borderSize),
+    term "stroke" (hex $ o ^. #borderColor),
+    term "stroke-opacity" (show $ opac $ o ^. #borderColor),
+    term "fill" (hex $ o ^. #color),
+    term "fill-opacity" (show $ opac $ o ^. #color)
+  ]
+
+-- | TextStyle to Attributes
+attsText :: TextStyle -> [Lucid.Attribute]
+attsText o =
+  [ term "stroke-width" "0.0",
+    term "stroke" "none",
+    term "fill" (toHex $ o ^. #color),
+    term "fill-opacity" (show $ opac $ o ^. #color),
+    term "font-size" (show $ o ^. #size),
+    term "text-anchor" (toTextAnchor $ o ^. #anchor)
+  ]
+    <> maybe [] ((: []) . term "transform" . toTranslateText) (o ^. #translate)
+  where
+    toTextAnchor :: Anchor -> Text
+    toTextAnchor AnchorMiddle = "middle"
+    toTextAnchor AnchorStart = "start"
+    toTextAnchor AnchorEnd = "end"
+
+-- | GlyphStyle to Attributes
+attsGlyph :: GlyphStyle -> [Lucid.Attribute]
+attsGlyph o =
+  [ term "stroke-width" (show $ o ^. #borderSize),
+    term "stroke" (toHex $ o ^. #borderColor),
+    term "stroke-opacity" (show $ opac $ o ^. #borderColor),
+    term "fill" (toHex $ o ^. #color),
+    term "fill-opacity" (show $ opac $ o ^. #color)
+  ]
+    <> maybe [] ((: []) . term "transform" . toTranslateText) (o ^. #translate)
+
+-- | LineStyle to Attributes
+attsLine :: LineStyle -> [Lucid.Attribute]
+attsLine o =
+  [ term "stroke-width" (show $ o ^. #width),
+    term "stroke" (toHex $ o ^. #color),
+    term "stroke-opacity" (show $ opac $ o ^. #color),
+    term "fill" "none"
+  ] <>
+  maybe [] (\x -> [term "stroke-linecap" (fromLineCap x)]) (o ^. #linecap) <>
+  maybe [] (\x -> [term "stroke-linejoin" (fromLineJoin x)]) (o ^. #linejoin) <>
+  maybe [] (\x -> [term "stroke-dasharray" (fromDashArray x)]) (o ^. #dasharray) <>
+  maybe [] (\x -> [term "stroke-dashoffset" (show x)]) (o ^. #dashoffset)
+
+-- | PathStyle to Attributes
+attsPath :: PathStyle -> [Lucid.Attribute]
+attsPath o =
+  [ term "stroke-width" (show $ o ^. #borderSize),
+    term "stroke" (hex $ o ^. #borderColor),
+    term "stroke-opacity" (show $ opac $ o ^. #borderColor),
+    term "fill" (hex $ o ^. #color),
+    term "fill-opacity" (show $ opac $ o ^. #color)
+  ]
+
+-- | includes a flip of the y dimension.
+toTranslateText :: Point Double -> Text
+toTranslateText (Point x y) =
+  "translate(" <> show x <> ", " <> show (- y) <> ")"
+
+-- | includes reference changes:
+--
+-- - from radians to degrees
+--
+-- - from counter-clockwise is a positive rotation to clockwise is positive
+--
+-- - flip y dimension
+--
+toRotateText :: Double -> Point Double -> Text
+toRotateText r (Point x y) =
+  "rotate(" <> show (-r*180/pi) <> ", " <> show x <> ", " <> show (- y) <> ")"
+
+toScaleText :: Double -> Text
+toScaleText x =
+  "scale(" <> show x <> ")"
+
+-- | Augmentation of a chart to include Html content.
+data ChartExtra a =
+  ChartExtra
+  { chartActual :: Chart a,
+    chartLink :: Maybe Text,
+    chartAttributes :: [Attribute],
+    chartContent :: Html ()
+  } deriving (Show, Generic)
+
+-- | Convert a plain chart top a 'ChartExtra'.
+toChartExtra :: Chart a -> ChartExtra a
+toChartExtra c = ChartExtra c Nothing mempty mempty
diff --git a/src/Chart/Surface.hs b/src/Chart/Surface.hs
new file mode 100644
--- /dev/null
+++ b/src/Chart/Surface.hs
@@ -0,0 +1,223 @@
+{-# LANGUAGE DataKinds #-}
+{-# LANGUAGE DeriveGeneric #-}
+{-# LANGUAGE OverloadedLabels #-}
+{-# LANGUAGE NoImplicitPrelude #-}
+{-# OPTIONS_GHC -Wall #-}
+
+-- | Surface chart combinators.
+--
+-- A common chart is to present a set of rectangles on the XY plane with colour representing values of the underlying data; a surface chart (often called a heatmap).
+--
+-- 'SurfaceData', the rectangle and the color value, is a different shape to the usual data elements of a chart, so there is a bit more wrangling to do compared with other chart types.
+module Chart.Surface
+  ( SurfaceData (..),
+    SurfaceOptions (..),
+    defaultSurfaceOptions,
+    SurfaceStyle (..),
+    defaultSurfaceStyle,
+    mkSurfaceData,
+    surfaces,
+    surfacef,
+    surfacefl,
+    SurfaceLegendOptions (..),
+    defaultSurfaceLegendOptions,
+  )
+where
+
+import Chart.Types
+import Control.Lens
+import Data.Colour
+import Data.FormatN
+import Data.Generics.Labels ()
+import NumHask.Prelude
+import NumHask.Space
+
+-- | Options for a Surface chart.
+--
+-- >>> defaultSurfaceOptions
+-- SurfaceOptions {soStyle = SurfaceStyle {surfaceColors = [RGBA 0.65 0.81 0.89 1.00,RGBA 0.12 0.47 0.71 1.00], surfaceRectStyle = RectStyle {borderSize = 0.0, borderColor = RGBA 0.00 0.00 0.00 0.00, color = RGBA 0.00 0.00 0.00 1.00}}, soGrain = Point 10 10, soRange = Rect -0.5 0.5 -0.5 0.5}
+data SurfaceOptions
+  = SurfaceOptions
+      { -- | surface style
+        soStyle :: SurfaceStyle,
+        -- | The grain or granularity of the chart
+        soGrain :: Point Int,
+        -- | Chart range
+        soRange :: Rect Double
+      }
+  deriving (Show, Eq, Generic)
+
+-- | official style
+defaultSurfaceOptions :: SurfaceOptions
+defaultSurfaceOptions =
+  SurfaceOptions defaultSurfaceStyle (Point 10 10) one
+
+-- | A surface chart is a specialization of a 'RectA' chart
+--
+-- >>> defaultSurfaceStyle
+-- SurfaceStyle {surfaceColors = [RGBA 0.65 0.81 0.89 1.00,RGBA 0.12 0.47 0.71 1.00], surfaceRectStyle = RectStyle {borderSize = 0.0, borderColor = RGBA 0.00 0.00 0.00 0.00, color = RGBA 0.00 0.00 0.00 1.00}}
+--
+-- ![surface example](other/surface.svg)
+data SurfaceStyle
+  = SurfaceStyle
+      { -- | list of colours to interpolate between.
+        surfaceColors :: [Colour],
+        surfaceRectStyle :: RectStyle
+      }
+  deriving (Show, Eq, Generic)
+
+-- | The official surface style.
+defaultSurfaceStyle :: SurfaceStyle
+defaultSurfaceStyle =
+  SurfaceStyle (take 2 palette1) (blob black)
+
+-- | Main surface data elements
+data SurfaceData
+  = SurfaceData
+      { -- | XY Coordinates of surface.
+        surfaceRect :: Rect Double,
+        -- | Surface colour.
+        surfaceColor :: Colour
+      }
+  deriving (Show, Eq, Generic)
+
+-- | surface chart without any hud trimmings
+surfaces :: RectStyle -> [SurfaceData] -> [Chart Double]
+surfaces rs ps =
+  ( \(SurfaceData r c) ->
+      Chart
+        (RectA (rs & #color .~ c))
+        [RectXY r]
+  )
+    <$> ps
+
+-- | create surface data from a function on a Point
+mkSurfaceData ::
+  (Point Double -> Double) ->
+  Rect Double ->
+  Grid (Rect Double) ->
+  [Colour] ->
+  ([SurfaceData], Range Double)
+mkSurfaceData f r g cs = ((\(x, y) -> SurfaceData x (blends y cs)) <$> ps', space1 rs)
+  where
+    ps = gridF f r g
+    rs = snd <$> ps
+    rs' = project (space1 rs :: Range Double) (Range 0 1) <$> rs
+    ps' = zip (fst <$> ps) rs'
+
+-- | create a surface chart from a function.
+surfacef :: (Point Double -> Double) -> SurfaceOptions -> ([Chart Double], Range Double)
+surfacef f cfg =
+  first (surfaces (cfg ^. #soStyle . #surfaceRectStyle)) $
+    mkSurfaceData
+      f
+      (cfg ^. #soRange)
+      (cfg ^. #soGrain)
+      (cfg ^. #soStyle . #surfaceColors)
+
+-- | Create a surface chart and accompanying legend from a function.
+surfacefl :: (Point Double -> Double) -> SurfaceOptions -> SurfaceLegendOptions -> ([Chart Double], [Hud Double])
+surfacefl f po slo = (cs, [legendHud (slo ^. #sloLegendOptions) (surfaceLegendChart dr slo)])
+  where
+    (cs, dr) = surfacef f po
+
+-- | Legend specialization for a surface chart.
+--
+-- >>> defaultSurfaceLegendOptions ""
+-- SurfaceLegendOptions {sloStyle = SurfaceStyle {surfaceColors = [RGBA 0.65 0.81 0.89 1.00,RGBA 0.12 0.47 0.71 1.00], surfaceRectStyle = RectStyle {borderSize = 0.0, borderColor = RGBA 0.00 0.00 0.00 0.00, color = RGBA 0.00 0.00 0.00 1.00}}, sloTitle = "", sloWidth = 5.0e-2, sloResolution = 100, sloAxisOptions = AxisOptions {axisBar = Nothing, adjust = Nothing, axisTick = Tick {tstyle = TickRound (FormatPrec (Just 3)) 4 NoTickExtend, gtick = Just (GlyphStyle {size = 3.0e-2, color = RGBA 0.00 0.00 0.00 1.00, borderColor = RGBA 0.50 0.50 0.50 1.00, borderSize = 5.0e-3, shape = VLineGlyph 5.0e-3, rotation = Nothing, translate = Nothing},1.0e-2), ttick = Just (TextStyle {size = 5.0e-2, color = RGBA 0.50 0.50 0.50 1.00, anchor = AnchorMiddle, hsize = 0.5, vsize = 1.45, nudge1 = -0.2, rotation = Nothing, translate = Nothing},3.0e-2), ltick = Nothing}, place = PlaceRight}, sloLegendOptions = LegendOptions {lsize = 0.5, vgap = 5.0e-2, hgap = 1.0e-2, ltext = TextStyle {size = 8.0e-2, color = RGBA 0.20 0.20 0.20 1.00, anchor = AnchorMiddle, hsize = 0.5, vsize = 1.45, nudge1 = -0.2, rotation = Nothing, translate = Nothing}, lmax = 10, innerPad = 5.0e-2, outerPad = 2.0e-2, legendFrame = Nothing, lplace = PlaceRight, lscale = 0.7}}
+data SurfaceLegendOptions
+  = SurfaceLegendOptions
+      { sloStyle :: SurfaceStyle,
+        sloTitle :: Text,
+        -- | Width of the legend glyph
+        sloWidth :: Double,
+        -- | Resolution of the legend glyph
+        sloResolution :: Int,
+        sloAxisOptions :: AxisOptions,
+        sloLegendOptions :: LegendOptions
+      }
+  deriving (Eq, Show, Generic)
+
+surfaceAxisOptions :: AxisOptions
+surfaceAxisOptions =
+  AxisOptions
+    Nothing
+    Nothing
+    ( Tick
+        (TickRound (FormatPrec (Just 3)) 4 NoTickExtend)
+        (Just (defaultGlyphTick & #color .~ black & #shape .~ VLineGlyph 0.005, 0.01))
+        (Just (defaultTextTick, 0.03))
+        Nothing
+    )
+    PlaceRight
+
+-- | official surface legend options
+defaultSurfaceLegendOptions :: Text -> SurfaceLegendOptions
+defaultSurfaceLegendOptions t =
+  SurfaceLegendOptions defaultSurfaceStyle t 0.05 100 surfaceAxisOptions surfaceLegendOptions
+
+surfaceLegendOptions :: LegendOptions
+surfaceLegendOptions =
+  defaultLegendOptions
+    & #lplace .~ PlaceRight
+    & #lscale .~ 0.7
+    & #lsize .~ 0.5
+    & #vgap .~ 0.05
+    & #hgap .~ 0.01
+    & #innerPad .~ 0.05
+    & #outerPad .~ 0.02
+    & #ltext . #hsize .~ 0.5
+    & #legendFrame .~ Nothing
+
+-- | Creation of the classical heatmap glyph within a legend context.
+--
+surfaceLegendChart :: Range Double -> SurfaceLegendOptions -> [Chart Double]
+surfaceLegendChart dataRange l =
+  padChart (l ^. #sloLegendOptions . #outerPad)
+    . maybe id (\x -> frameChart x (l ^. #sloLegendOptions . #innerPad)) (l ^. #sloLegendOptions . #legendFrame)
+    $ hs
+  where
+    a = makeSurfaceTick l pchart
+    pchart
+      | l ^. #sloLegendOptions . #lplace == PlaceBottom
+          || l ^. #sloLegendOptions . #lplace == PlaceTop = vertGlyph
+      | otherwise = horiGlyph
+    t = Chart (TextA (l ^. #sloLegendOptions . #ltext & #anchor .~ AnchorStart) [l ^. #sloTitle]) [zero]
+    hs = vert (l ^. #sloLegendOptions . #vgap) [a, [t]]
+    vertGlyph :: [Chart Double]
+    vertGlyph =
+      zipWith
+      (\r c -> Chart (RectA $ blob c) [RectXY r])
+      ((\xr -> Ranges xr (Range 0 (l ^. #sloWidth))) <$> gridSpace dataRange
+       (l ^. #sloResolution))
+      ((\x -> blends x (l ^. #sloStyle . #surfaceColors)) <$>
+       grid MidPos (Range 0 1) (l ^. #sloResolution))
+    horiGlyph :: [Chart Double]
+    horiGlyph =
+      zipWith
+      (\r c -> Chart (RectA $ blob c) [RectXY r])
+      ((\yr -> Ranges (Range 0 (l ^. #sloWidth)) yr) <$> gridSpace dataRange
+       (l ^. #sloResolution))
+      ((\x -> blends x (l ^. #sloStyle . #surfaceColors)) <$>
+       grid MidPos (Range 0 1) (l ^. #sloResolution))
+
+isHori :: SurfaceLegendOptions -> Bool
+isHori l =
+  l ^. #sloLegendOptions . #lplace == PlaceBottom
+    || l ^. #sloLegendOptions . #lplace == PlaceTop
+
+makeSurfaceTick :: SurfaceLegendOptions -> [Chart Double] -> [Chart Double]
+makeSurfaceTick l pchart = phud
+  where
+    r = fromMaybe one (styleBoxes pchart)
+    r' = bool (Rect 0 (l ^. #sloWidth) 0 (l ^. #sloLegendOptions . #lsize)) (Rect 0 (l ^. #sloLegendOptions . #lsize) 0 (l ^. #sloWidth)) (isHori l)
+    (hs, _) =
+      makeHud
+        r
+        ( mempty & #hudAxes
+            .~ [ l ^. #sloAxisOptions
+                   & #place .~ bool PlaceRight PlaceBottom (isHori l)
+               ]
+        )
+    phud = runHudWith r' r hs pchart
+
diff --git a/src/Chart/Types.hs b/src/Chart/Types.hs
--- a/src/Chart/Types.hs
+++ b/src/Chart/Types.hs
@@ -1,1653 +1,1596 @@
 {-# LANGUAGE AllowAmbiguousTypes #-}
 {-# LANGUAGE ConstraintKinds #-}
 {-# LANGUAGE DataKinds #-}
-{-# LANGUAGE DeriveFunctor #-}
-{-# LANGUAGE DeriveGeneric #-}
-{-# LANGUAGE DuplicateRecordFields #-}
-{-# LANGUAGE FlexibleContexts #-}
-{-# LANGUAGE FlexibleInstances #-}
-{-# LANGUAGE MultiParamTypeClasses #-}
-{-# LANGUAGE OverloadedLabels #-}
-{-# LANGUAGE OverloadedStrings #-}
-{-# LANGUAGE PatternSynonyms #-}
-{-# LANGUAGE RankNTypes #-}
-{-# LANGUAGE RebindableSyntax #-}
-{-# LANGUAGE TypeFamilies #-}
-{-# OPTIONS_GHC -Wall #-}
-{-# OPTIONS_GHC -fno-warn-name-shadowing #-}
-{-# OPTIONS_GHC -fno-warn-overlapping-patterns #-}
-{-# OPTIONS_GHC -fno-warn-type-defaults #-}
-
-module Chart.Types
-  ( Chart (..),
-    Annotation (..),
-    annotationText,
-    RectStyle (..),
-    defaultRectStyle,
-    blob,
-    clear,
-    border,
-    TextStyle (..),
-    defaultTextStyle,
-    Anchor (..),
-    fromAnchor,
-    toAnchor,
-    GlyphStyle (..),
-    defaultGlyphStyle,
-    GlyphShape (..),
-    glyphText,
-    LineStyle (..),
-    defaultLineStyle,
-    PixelStyle (..),
-    defaultPixelStyle,
-    Direction (..),
-    fromDirection,
-    toDirection,
-    padRect,
-
-    SvgAspect (..),
-    toSvgAspect,
-    fromSvgAspect,
-    EscapeText (..),
-    CssOptions (..),
-    ScaleCharts (..),
-    SvgOptions (..),
-    defaultSvgOptions,
-    defaultSvgFrame,
-
-    -- $hud machinery
-    ChartDims (..),
-    HudT (..),
-    Hud,
-    HudOptions (..),
-    defaultHudOptions,
-    defaultCanvas,
-    AxisOptions (..),
-    defaultAxisOptions,
-    Place (..),
-    placeText,
-    Bar (..),
-    defaultBar,
-    Title (..),
-    defaultTitle,
-    Tick (..),
-    defaultGlyphTick,
-    defaultTextTick,
-    defaultLineTick,
-    defaultTick,
-    TickStyle (..),
-    defaultTickStyle,
-    tickStyleText,
-    TickExtend (..),
-    Adjustments (..),
-    defaultAdjustments,
-    LegendOptions (..),
-    defaultLegendOptions,
-    -- $core
-    projectXYs,
-    projectXYsWith,
-    dataBox,
-    toAspect,
-    scaleAnn,
-    moveChart,
-    
-    -- $hud
-    runHudWith,
-    runHud,
-    makeHud,
-    freezeTicks,
-    flipAxis,
-    canvas,
-    title,
-    tick,
-    adjustTick,
-    makeTickDates,
-    makeTickDatesContinuous,
-    legendHud,
-    legendEntry,
-    legendChart,
-    legendFromChart,
-    -- $svg
-    svg,
-    svgt,
-    chartDef,
-    chartDefs,
-    styleBox,
-    styleBoxes,
-    noStyleBoxes,
-    styleBoxText,
-    styleBoxGlyph,
-    padChart,
-    frameChart,
-    hori,
-    vert,
-    stack,
-    addChartBox,
-    addChartBoxes,
-  )
-where
-
-import Control.Lens
-import Data.Colour
-import Data.FormatN
-import Data.Generics.Labels ()
-import Data.List ((!!))
-import qualified Data.Text as Text
-import Data.Time
-import qualified Lucid
-import Lucid (class_, height_, id_, term, toHtmlRaw, width_, with)
-import Lucid.Base (makeXmlElementNoEnd)
-import qualified Lucid.Base as Lucid
-import NumHask.Prelude
-import NumHask.Space as NH hiding (Element)
-import Text.HTML.TagSoup hiding (Attribute)
-import qualified Prelude as P
-
--- $setup
---
--- >>> :set -XOverloadedLabels
--- >>> :set -XNoImplicitPrelude
--- >>> -- import NumHask.Prelude
--- >>> import Control.Lens
--- >>> import Chart.Render
-
--- * Chart
-
--- | A `Chart` consists of
--- - specific style of representation for each xy point or xy rectangle.
--- - a list of points or rectangles on the xy-plane, and
-data Chart a
-  = Chart
-      { annotation :: Annotation,
-        xys :: [XY a]
-      }
-  deriving (Eq, Show, Generic)
-
--- | Manifestation of the data on a screen.
-data Annotation
-  = RectA RectStyle
-  | TextA TextStyle [Text]
-  | GlyphA GlyphStyle
-  | LineA LineStyle
-  | BlankA
-  | PixelA PixelStyle
-  deriving (Eq, Show, Generic)
-
--- | textifier
-annotationText :: Annotation -> Text
-annotationText (RectA _) = "RectA"
-annotationText TextA {} = "TextA"
-annotationText (GlyphA _) = "GlyphA"
-annotationText (LineA _) = "LineA"
-annotationText BlankA = "BlankA"
-annotationText (PixelA _) = "PixelA"
-
--- | Rectangle styling
---
--- >>> defaultRectStyle
--- RectStyle {borderSize = 1.0e-2, borderColor = RGBA 0.12 0.47 0.71 0.80, color = RGBA 0.12 0.47 0.71 0.30}
---
--- > writeCharts "other/unit.svg" [Chart (RectA defaultRectStyle) [one]]
---
--- ![unit example](other/unit.svg)
-data RectStyle
-  = RectStyle
-      { borderSize :: Double,
-        borderColor :: Colour,
-        color :: Colour
-      }
-  deriving (Show, Eq, Generic)
-
--- | the style
-defaultRectStyle :: RectStyle
-defaultRectStyle = RectStyle 0.01 (fromRGB (palette !! 1) 0.8) (fromRGB (palette !! 1) 0.3)
-
--- | solid rectangle, no border
---
--- >>> blob black
--- RectStyle {borderSize = 0.0, borderColor = RGBA 0.00 0.00 0.00 0.00, color = RGBA 0.00 0.00 0.00 1.00}
-blob :: Colour -> RectStyle
-blob = RectStyle 0 transparent
-
--- | transparent rect
---
--- >>> clear
--- RectStyle {borderSize = 0.0, borderColor = RGBA 0.00 0.00 0.00 0.00, color = RGBA 0.00 0.00 0.00 0.00}
-clear :: RectStyle
-clear = RectStyle 0 transparent transparent
-
--- | transparent rectangle, with border
---
--- >>> border 0.01 transparent
--- RectStyle {borderSize = 1.0e-2, borderColor = RGBA 0.00 0.00 0.00 0.00, color = RGBA 0.00 0.00 0.00 0.00}
-border :: Double -> Colour -> RectStyle
-border s c = RectStyle s c transparent
-
--- | Text styling
---
--- >>> defaultTextStyle
--- TextStyle {size = 8.0e-2, color = RGBA 0.20 0.20 0.20 1.00, anchor = AnchorMiddle, hsize = 0.5, vsize = 1.45, nudge1 = -0.2, rotation = Nothing, translate = Nothing, hasMathjax = False}
---
--- >>> let t = zipWith (\x y -> Chart (TextA (defaultTextStyle & (#size .~ (0.05 :: Double))) [x]) [PointXY y]) (fmap Text.singleton ['a' .. 'y']) [Point (sin (x * 0.1)) x | x <- [0 .. 25]]
---
--- > writeCharts "other/text.svg" t
---
--- ![text example](other/text.svg)
-data TextStyle
-  = TextStyle
-      { size :: Double,
-        color :: Colour,
-        anchor :: Anchor,
-        hsize :: Double,
-        vsize :: Double,
-        nudge1 :: Double,
-        rotation :: Maybe Double,
-        translate :: Maybe (Point Double),
-        hasMathjax :: Bool
-      }
-  deriving (Show, Eq, Generic)
-
--- | position anchor
-data Anchor = AnchorMiddle | AnchorStart | AnchorEnd deriving (Eq, Show, Generic)
-
--- | text
-fromAnchor :: (IsString s) => Anchor -> s
-fromAnchor AnchorMiddle = "Middle"
-fromAnchor AnchorStart = "Start"
-fromAnchor AnchorEnd = "End"
-
--- | from text
-toAnchor :: (Eq s, IsString s) => s -> Anchor
-toAnchor "Middle" = AnchorMiddle
-toAnchor "Start" = AnchorStart
-toAnchor "End" = AnchorEnd
-toAnchor _ = AnchorMiddle
-
--- | the offical text style
-defaultTextStyle :: TextStyle
-defaultTextStyle =
-  TextStyle 0.08 colorText AnchorMiddle 0.5 1.45 (-0.2) Nothing Nothing False
-
--- | Glyph styling
---
--- >>> defaultGlyphStyle
--- GlyphStyle {size = 3.0e-2, color = RGBA 0.65 0.81 0.89 0.30, borderColor = RGBA 0.12 0.47 0.71 0.80, borderSize = 3.0e-3, shape = SquareGlyph, rotation = Nothing, translate = Nothing}
---
--- ![glyph example](other/glyph.svg)
-data GlyphStyle
-  = GlyphStyle
-      { -- | glyph radius
-        size :: Double,
-        -- | fill color
-        color :: Colour,
-        -- | stroke color
-        borderColor :: Colour,
-        -- | stroke width (adds a bit to the bounding box)
-        borderSize :: Double,
-        shape :: GlyphShape,
-        rotation :: Maybe Double,
-        translate :: Maybe (Point Double)
-      }
-  deriving (Show, Eq, Generic)
-
--- | the offical glyph style
-defaultGlyphStyle :: GlyphStyle
-defaultGlyphStyle =
-  GlyphStyle
-    0.03
-    (fromRGB (palette !! 0) 0.3)
-    (fromRGB (palette !! 1) 0.8)
-    0.003
-    SquareGlyph
-    Nothing
-    Nothing
-
--- | glyph shapes
-data GlyphShape
-  = CircleGlyph
-  | SquareGlyph
-  | EllipseGlyph Double
-  | RectSharpGlyph Double
-  | RectRoundedGlyph Double Double Double
-  | TriangleGlyph (Point Double) (Point Double) (Point Double)
-  | VLineGlyph Double
-  | HLineGlyph Double
-  | PathGlyph Text
-  deriving (Show, Eq, Generic)
-
--- | textifier
-glyphText :: GlyphShape -> Text
-glyphText sh =
-  case sh of
-    CircleGlyph -> "Circle"
-    SquareGlyph -> "Square"
-    TriangleGlyph {} -> "Triangle"
-    EllipseGlyph _ -> "Ellipse"
-    RectSharpGlyph _ -> "RectSharp"
-    RectRoundedGlyph {} -> "RectRounded"
-    VLineGlyph _ -> "VLine"
-    HLineGlyph _ -> "HLine"
-    PathGlyph _ -> "Path"
-
--- | line style
---
--- >>> defaultLineStyle
--- LineStyle {width = 1.2e-2, color = RGBA 0.65 0.81 0.89 0.30}
-data LineStyle
-  = LineStyle
-      { width :: Double,
-        color :: Colour
-      }
-  deriving (Show, Eq, Generic)
-
--- | the official default line style
-defaultLineStyle :: LineStyle
-defaultLineStyle = LineStyle 0.012 (fromRGB (palette !! 0) 0.3)
-
--- | A pixel chart is a specialization of a 'RectA' chart
---
--- >>> defaultPixelStyle
--- PixelStyle {pixelColorMin = RGBA 0.65 0.81 0.89 1.00, pixelColorMax = RGBA 0.12 0.47 0.71 1.00, pixelGradient = 1.5707963267948966, pixelRectStyle = RectStyle {borderSize = 0.0, borderColor = RGBA 0.00 0.00 0.00 0.00, color = RGBA 0.00 0.00 0.00 1.00}, pixelTextureId = "pixel"}
---
--- ![pixel example](other/pixel.svg)
-data PixelStyle
-  = PixelStyle
-      { pixelColorMin :: Colour,
-        pixelColorMax :: Colour,
-        -- | expressed in directional terms
-        -- 0 for horizontal
-        -- pi/2 for vertical
-        pixelGradient :: Double,
-        pixelRectStyle :: RectStyle,
-        pixelTextureId :: Text
-      }
-  deriving (Show, Eq, Generic)
-
--- | The official pixel style.
-defaultPixelStyle :: PixelStyle
-defaultPixelStyle =
-  PixelStyle (fromRGB (palette !! 0) 1) (fromRGB (palette !! 1) 1) (pi / 2) (blob black) "pixel"
-
--- | Verticle or Horizontal
-data Direction = Vert | Hori deriving (Eq, Show, Generic)
-
--- | textifier
-fromDirection :: (IsString s) => Direction -> s
-fromDirection Hori = "Hori"
-fromDirection Vert = "Vert"
-
--- | readifier
-toDirection :: (Eq s, IsString s) => s -> Direction
-toDirection "Hori" = Hori
-toDirection "Vert" = Vert
-toDirection _ = Hori
-
--- | additive padding
-padRect :: (Num a) => a -> Rect a -> Rect a
-padRect p (Rect x z y w) = Rect (x P.- p) (z P.+ p) (y P.- p) (w P.+ p)
-
--- | or html
-data EscapeText = EscapeText | NoEscapeText deriving (Show, Eq, Generic)
-
--- | pixel chart helper
-data CssOptions = UseCssCrisp | NoCssOptions deriving (Show, Eq, Generic)
-
--- | turns off scaling.  Usually not what you want.
-data ScaleCharts = ScaleCharts | NoScaleCharts deriving (Show, Eq, Generic)
-
--- | The x-y ratio of the viewing box
-data SvgAspect = ManualAspect Double | ChartAspect deriving (Show, Eq, Generic)
-
--- | textifier
-fromSvgAspect :: (IsString s) => SvgAspect -> s
-fromSvgAspect (ManualAspect _) = "ManualAspect"
-fromSvgAspect ChartAspect = "ChartAspect"
-
--- | readifier
-toSvgAspect :: (Eq s, IsString s) => s -> Double -> SvgAspect
-toSvgAspect "ManualAspect" a = ManualAspect a
-toSvgAspect "ChartAspect" _ = ChartAspect
-toSvgAspect _ _ = ChartAspect
-
--- | Top-level SVG options.
---
--- >>> defaultSvgOptions
--- SvgOptions {svgHeight = 300.0, outerPad = Just 2.0e-2, innerPad = Nothing, chartFrame = Nothing, escapeText = NoEscapeText, useCssCrisp = NoCssOptions, scaleCharts' = ScaleCharts, svgAspect = ManualAspect 1.5}
---
--- > writeChartsWith "other/svgoptions.svg" (defaultSvgOptions & #svgAspect .~ ManualAspect 0.7) lines
---
--- ![svgoptions example](other/svgoptions.svg)
-data SvgOptions
-  = SvgOptions
-      { svgHeight :: Double,
-        outerPad :: Maybe Double,
-        innerPad :: Maybe Double,
-        chartFrame :: Maybe RectStyle,
-        escapeText :: EscapeText,
-        useCssCrisp :: CssOptions,
-        scaleCharts' :: ScaleCharts,
-        svgAspect :: SvgAspect
-      }
-  deriving (Eq, Show, Generic)
-
--- | The official svg options
-defaultSvgOptions :: SvgOptions
-defaultSvgOptions = SvgOptions 300 (Just 0.02) Nothing Nothing NoEscapeText NoCssOptions ScaleCharts (ManualAspect 1.5)
-
--- | frame style
-defaultSvgFrame :: RectStyle
-defaultSvgFrame = border 0.01 (fromRGB (grayscale 0.7) 0.5)
-
--- | In order to create huds, there are three main pieces of state that need to be kept track of:
---
--- - chartDim: the rectangular dimension of the physical representation of a chart on the screen so that new hud elements can be appended. Adding a hud piece tends to expand the chart dimension.
---
--- - canvasDim: the rectangular dimension of the canvas on which data will be represented. At times appending a hud element will cause the canvas dimension to shift.
---
--- - dataDim: the rectangular dimension of the data being represented. Adding hud elements can cause this to change.
-data ChartDims a
-  = ChartDims
-      { chartDim :: Rect a,
-        canvasDim :: Rect a,
-        dataDim :: Rect a
-      }
-  deriving (Eq, Show, Generic)
-
--- | Hud monad transformer
-newtype HudT m a = Hud {unhud :: [Chart a] -> StateT (ChartDims a) m [Chart a]}
-
-type Hud = HudT Identity
-
-instance (Monad m) => Semigroup (HudT m a) where
-  (<>) (Hud h1) (Hud h2) = Hud $ h1 >=> h2
-
-instance (Monad m) => Monoid (HudT m a) where
-  mempty = Hud pure
-
--- | Practically, the configuration of a Hud is going to be in decimals, typed into config files and the like, and so we concrete at the configuration level, and settle on doubles for specifying the geomtry of hud elements.
---
--- > writeHudOptionsChart "other/hud.svg" defaultSvgOptions defaultHudOptions [] []
---
--- ![hud example](other/hud.svg)
-data HudOptions
-  = HudOptions
-      { hudCanvas :: Maybe RectStyle,
-        hudTitles :: [Title],
-        hudAxes :: [AxisOptions],
-        hudLegend :: Maybe (LegendOptions, [(Annotation, Text)])
-      }
-  deriving (Eq, Show, Generic)
-
-instance Semigroup HudOptions where
-  (<>) (HudOptions c t a l) (HudOptions c' t' a' l') =
-    HudOptions (listToMaybe $ catMaybes [c, c']) (t <> t') (a <> a') (listToMaybe $ catMaybes [l, l'])
-
-instance Monoid HudOptions where
-  mempty = HudOptions Nothing [] [] Nothing
-
--- | The official hud options.
-defaultHudOptions :: HudOptions
-defaultHudOptions =
-  HudOptions
-    (Just defaultCanvas)
-    []
-    [ defaultAxisOptions,
-      defaultAxisOptions & #place .~ PlaceLeft
-    ]
-    Nothing
-
--- | The official hud canvas
-defaultCanvas :: RectStyle
-defaultCanvas = blob (fromRGB (grayscale 0.5) 0.025)
-
--- | Placement of elements around (what is implicity but maybe shouldn't just be) a rectangular canvas
-data Place
-  = PlaceLeft
-  | PlaceRight
-  | PlaceTop
-  | PlaceBottom
-  | PlaceAbsolute (Point Double)
-  deriving (Show, Eq, Generic)
-
--- | textifier
-placeText :: Place -> Text
-placeText p =
-  case p of
-    PlaceTop -> "Top"
-    PlaceBottom -> "Bottom"
-    PlaceLeft -> "Left"
-    PlaceRight -> "Right"
-    PlaceAbsolute _ -> "Absolute"
-
--- | axis options
-data AxisOptions
-  = AxisOptions
-      { abar :: Maybe Bar,
-        adjust :: Maybe Adjustments,
-        atick :: Tick,
-        place :: Place
-      }
-  deriving (Eq, Show, Generic)
-
--- | The official axis
-defaultAxisOptions :: AxisOptions
-defaultAxisOptions = AxisOptions (Just defaultBar) (Just defaultAdjustments) defaultTick PlaceBottom
-
--- | The bar on an axis representing the x or y plane.
---
--- >>> defaultBar
--- Bar {rstyle = RectStyle {borderSize = 0.0, borderColor = RGBA 0.50 0.50 0.50 1.00, color = RGBA 0.50 0.50 0.50 1.00}, wid = 5.0e-3, buff = 1.0e-2}
-data Bar
-  = Bar
-      { rstyle :: RectStyle,
-        wid :: Double,
-        buff :: Double
-      }
-  deriving (Show, Eq, Generic)
-
--- | The official axis bar
-defaultBar :: Bar
-defaultBar = Bar (RectStyle 0 (fromRGB (grayscale 0.5) 1) (fromRGB (grayscale 0.5) 1)) 0.005 0.01
-
--- | Options for titles.  Defaults to center aligned, and placed at Top of the hud
-data Title
-  = Title
-      { text :: Text,
-        style :: TextStyle,
-        place :: Place,
-        anchor :: Anchor,
-        buff :: Double
-      }
-  deriving (Show, Eq, Generic)
-
--- | The official hud title
-defaultTitle :: Text -> Title
-defaultTitle txt =
-  Title
-    txt
-    ( (#size .~ 0.12)
-        . (#color .~ colorText)
-        $ defaultTextStyle
-    )
-    PlaceTop
-    AnchorMiddle
-    0.04
-
--- | xy coordinate markings
---
--- >>> defaultTick
--- Tick {tstyle = TickRound (FormatComma (Just 2)) 8 TickExtend, gtick = Just (GlyphStyle {size = 3.0e-2, color = RGBA 0.50 0.50 0.50 1.00, borderColor = RGBA 0.50 0.50 0.50 1.00, borderSize = 5.0e-3, shape = VLineGlyph 5.0e-3, rotation = Nothing, translate = Nothing},1.25e-2), ttick = Just (TextStyle {size = 5.0e-2, color = RGBA 0.50 0.50 0.50 1.00, anchor = AnchorMiddle, hsize = 0.5, vsize = 1.45, nudge1 = -0.2, rotation = Nothing, translate = Nothing, hasMathjax = False},1.5e-2), ltick = Just (LineStyle {width = 5.0e-3, color = RGBA 0.50 0.50 0.50 0.05},0.0)}
-data Tick
-  = Tick
-      { tstyle :: TickStyle,
-        gtick :: Maybe (GlyphStyle, Double),
-        ttick :: Maybe (TextStyle, Double),
-        ltick :: Maybe (LineStyle, Double)
-      }
-  deriving (Show, Eq, Generic)
-
--- | The official glyph tick
-defaultGlyphTick :: GlyphStyle
-defaultGlyphTick =
-  defaultGlyphStyle
-    & #borderSize .~ 0.005
-    & #borderColor .~ fromRGB (grayscale 0.5) 1
-    & #color .~ fromRGB (grayscale 0.5) 1
-    & #shape .~ VLineGlyph 0.005
-
--- | The official text tick
-defaultTextTick :: TextStyle
-defaultTextTick =
-  defaultTextStyle & #size .~ 0.05 & #color .~ fromRGB (grayscale 0.5) 1
-
--- | The official line tick
-defaultLineTick :: LineStyle
-defaultLineTick =
-  defaultLineStyle
-    & #color .~ fromRGB (grayscale 0.5) 0.05
-    & #width .~ 5.0e-3
-
--- | The official tick
-defaultTick :: Tick
-defaultTick =
-  Tick
-    defaultTickStyle
-    (Just (defaultGlyphTick, 0.0125))
-    (Just (defaultTextTick, 0.015))
-    (Just (defaultLineTick, 0))
-
--- | Style of tick marks on an axis.
-data TickStyle
-  = -- | no ticks on axis
-    TickNone
-  | -- | specific labels (equidistant placement)
-    TickLabels [Text]
-  | -- | sensibly rounded ticks, a guide to how many, and whether to extend beyond the data bounding box
-    TickRound FormatN Int TickExtend
-  | -- | exactly n equally spaced ticks
-    TickExact FormatN Int
-  | -- | specific labels and placement
-    TickPlaced [(Double, Text)]
-  deriving (Show, Eq, Generic)
-
--- | The official tick style
-defaultTickStyle :: TickStyle
-defaultTickStyle = TickRound (FormatComma (Just 2)) 8 TickExtend
-
--- | textifier
-tickStyleText :: TickStyle -> Text
-tickStyleText TickNone = "TickNone"
-tickStyleText TickLabels {} = "TickLabels"
-tickStyleText TickRound {} = "TickRound"
-tickStyleText TickExact {} = "TickExact"
-tickStyleText TickPlaced {} = "TickPlaced"
-
--- | Whether Ticks are allowed to extend the data range
-data TickExtend = TickExtend | NoTickExtend deriving (Eq, Show, Generic)
-
--- | options for prettifying axis decorations
---
--- >>> defaultAdjustments
--- Adjustments {maxXRatio = 8.0e-2, maxYRatio = 6.0e-2, angledRatio = 0.12, allowDiagonal = True}
-data Adjustments
-  = Adjustments
-      { maxXRatio :: Double,
-        maxYRatio :: Double,
-        angledRatio :: Double,
-        allowDiagonal :: Bool
-      }
-  deriving (Show, Eq, Generic)
-
--- | The official hud adjustments.
-defaultAdjustments :: Adjustments
-defaultAdjustments = Adjustments 0.08 0.06 0.12 True
-
--- You're all Legends!
-
--- | Legend options
---
--- >>> defaultLegendOptions
--- LegendOptions {lsize = 0.1, vgap = 0.2, hgap = 0.1, ltext = TextStyle {size = 8.0e-2, color = RGBA 0.20 0.20 0.20 1.00, anchor = AnchorMiddle, hsize = 0.5, vsize = 1.45, nudge1 = -0.2, rotation = Nothing, translate = Nothing, hasMathjax = False}, lmax = 10, innerPad = 0.1, outerPad = 0.1, legendFrame = Just (RectStyle {borderSize = 2.0e-2, borderColor = RGBA 0.50 0.50 0.50 1.00, color = RGBA 1.00 1.00 1.00 1.00}), lplace = PlaceBottom, lscale = 0.2}
---
--- ![legend example](other/legend.svg)
-data LegendOptions
-  = LegendOptions
-      { lsize :: Double,
-        vgap :: Double,
-        hgap :: Double,
-        ltext :: TextStyle,
-        lmax :: Int,
-        innerPad :: Double,
-        outerPad :: Double,
-        legendFrame :: Maybe RectStyle,
-        lplace :: Place,
-        lscale :: Double
-      }
-  deriving (Show, Eq, Generic)
-
--- | The official legend options
-defaultLegendOptions :: LegendOptions
-defaultLegendOptions =
-  LegendOptions
-    0.1
-    0.2
-    0.1
-    ( defaultTextStyle
-        & #size .~ 0.08
-    )
-    10
-    0.1
-    0.1
-    (Just (RectStyle 0.02 (fromRGB (grayscale 0.5) 1) white))
-    PlaceBottom
-    0.2
-
--- | Project the xys of a chart to a new XY Space.
-projectXYs :: Rect Double -> [Chart Double] -> [Chart Double]
-projectXYs a cs = cs'
-  where
-    xss = projectTo2 a (xys <$> cs)
-    ss = annotation <$> cs
-    cs' = zipWith Chart ss xss
-    projectTo2 vb xss =
-      fmap
-        ( maybe
-            id
-            (projectOn vb)
-            (fold $ foldRect . fmap toRect <$> xss)
-        )
-        <$> xss
-
--- | Project chart xys to a new XY Space from an old XY Space
-projectXYsWith :: Rect Double -> Rect Double -> [Chart Double] -> [Chart Double]
-projectXYsWith new old cs = cs'
-  where
-    xss = fmap (projectOn new old) . xys <$> cs
-    ss = annotation <$> cs
-    cs' = zipWith Chart ss xss
-
--- | convert to a ratio
-toAspect :: (Divisive a, Subtractive a) => Rect a -> a
-toAspect (Rect x z y w) = (z - x) / (w - y)
-
--- | get the Space of a [Chart a]
-dataBox :: (Ord a) => [Chart a] -> Maybe (Rect a)
-dataBox cs = foldRect . mconcat $ fmap toRect <$> (xys <$> cs)
-
-scaleAnn :: Double -> Annotation -> Annotation
-scaleAnn x (LineA a) = LineA $ a & #width %~ (* x)
-scaleAnn x (RectA a) = RectA $ a & #borderSize %~ (* x)
-scaleAnn x (TextA a txs) = TextA (a & #size %~ (* x)) txs
-scaleAnn x (GlyphA a) = GlyphA (a & #size %~ (* x))
-scaleAnn x (PixelA a) = PixelA $ a & #pixelRectStyle . #borderSize %~ (* x)
-scaleAnn _ BlankA = BlankA
-
-moveChart :: (Additive a) => XY a -> [Chart a] -> [Chart a]
-moveChart sp cs = fmap (#xys %~ fmap (sp +)) cs
-
--- | combine huds and charts to form a new Chart using the supplied
--- initial canvas and data dimensions.
--- Note that chart data is transformed by this computation.
--- used once in makePixelTick
-runHudWith ::
-  -- | initial canvas dimension
-  Rect Double ->
-  -- | initial data dimension
-  Rect Double ->
-  -- | huds to add
-  [Hud Double] ->
-  -- | underlying chart
-  [Chart Double] ->
-  -- | chart list
-  [Chart Double]
-runHudWith ca xs hs cs =
-  flip evalState (ChartDims ca' da' xs) $
-    (unhud $ mconcat hs) cs'
-  where
-    da' = fromMaybe one $ dataBox cs'
-    ca' = fromMaybe one $ styleBoxes cs'
-    cs' = projectXYsWith ca xs cs
-
--- | Combine huds and charts to form a new [Chart] using the supplied canvas and the actual data dimension.
--- Note that the original chart data are transformed and irrevocably lost by this computation.
--- used once in renderHudChart
-runHud :: Rect Double -> [Hud Double] -> [Chart Double] -> [Chart Double]
-runHud ca hs cs = runHudWith ca (fixRect $ dataBox cs) hs cs
-
--- | Make huds from a HudOptions
--- Some huds, such as the creation of tick values, can extend the data dimension of a chart, so we also return a blank chart with the new data dimension.
--- The complexity internally is due to the creation of ticks and, specifically, gridSensible, which is not idempotent. As a result, a tick calculation that does extends the data area, can then lead to new tick values when applying TickRound etc.
-makeHud :: Rect Double -> HudOptions -> ([Hud Double], [Chart Double])
-makeHud xs cfg =
-  (haxes <> [can] <> titles <> [l], [xsext])
-  where
-    can = maybe mempty (\x -> canvas x) (cfg ^. #hudCanvas)
-    titles = title <$> (cfg ^. #hudTitles)
-    newticks = (\a -> freezeTicks (a ^. #place) xs (a ^. #atick . #tstyle)) <$> (cfg ^. #hudAxes)
-    axes' = zipWith (\c t -> c & #atick . #tstyle .~ fst t) (cfg ^. #hudAxes) newticks
-    xsext = Chart BlankA (RectXY <$> catMaybes (snd <$> newticks))
-    haxes = (\x -> maybe mempty (\a -> bar (x ^. #place) a) (x ^. #abar) <> adjustedTickHud x) <$> axes'
-    l = maybe mempty (\(lo, ats) -> legendHud lo (legendChart ats lo)) (cfg ^. #hudLegend)
-
--- convert TickRound to TickPlaced
-freezeTicks :: Place -> Rect Double -> TickStyle -> (TickStyle, Maybe (Rect Double))
-freezeTicks pl xs' ts@TickRound {} = maybe (ts, Nothing) (\x -> (TickPlaced (zip ps ls), Just x)) ((\x -> replaceRange pl x xs') <$> ext)
-  where
-    (TickComponents ps ls ext) = makeTicks ts (placeRange pl xs')
-    replaceRange :: Place -> Range Double -> Rect Double -> Rect Double
-    replaceRange pl' (Range a0 a1) (Rect x z y w) = case pl' of
-      PlaceRight -> Rect x z a0 a1
-      PlaceLeft -> Rect x z a0 a1
-      _ -> Rect a0 a1 y w
-freezeTicks _ _ ts = (ts, Nothing)
-
--- |
-flipAxis :: AxisOptions -> AxisOptions
-flipAxis ac = case ac ^. #place of
-  PlaceBottom -> ac & #place .~ PlaceLeft
-  PlaceTop -> ac & #place .~ PlaceRight
-  PlaceLeft -> ac & #place .~ PlaceBottom
-  PlaceRight -> ac & #place .~ PlaceTop
-  PlaceAbsolute _ -> ac
-
-addToRect :: (Ord a) => Rect a -> Maybe (Rect a) -> Rect a
-addToRect r r' = sconcat $ r :| maybeToList r'
-
-canvas :: (Monad m) => RectStyle -> HudT m Double
-canvas s = Hud $ \cs -> do
-  a <- use #canvasDim
-  let c = Chart (RectA s) [RectXY a]
-  #canvasDim .= addToRect a (styleBox c)
-  pure $ c : cs
-
-bar_ :: Place -> Bar -> Rect Double -> Rect Double -> Chart Double
-bar_ pl b (Rect x z y w) (Rect x' z' y' w') =
-  case pl of
-    PlaceTop ->
-      Chart
-        (RectA (rstyle b))
-        [ R
-            x
-            z
-            (w' + b ^. #buff)
-            (w' + b ^. #buff + b ^. #wid)
-        ]
-    PlaceBottom ->
-      Chart
-        (RectA (rstyle b))
-        [ R
-            x
-            z
-            (y' - b ^. #wid - b ^. #buff)
-            (y' - b ^. #buff)
-        ]
-    PlaceLeft ->
-      Chart
-        (RectA (rstyle b))
-        [ R
-            (x' - b ^. #wid - b ^. #buff)
-            (x' - b ^. #buff)
-            y
-            w
-        ]
-    PlaceRight ->
-      Chart
-        (RectA (rstyle b))
-        [ R
-            (z' + (b ^. #buff))
-            (z' + (b ^. #buff) + (b ^. #wid))
-            y
-            w
-        ]
-    PlaceAbsolute (Point x'' _) ->
-      Chart
-        (RectA (rstyle b))
-        [ R
-            (x'' + (b ^. #buff))
-            (x'' + (b ^. #buff) + (b ^. #wid))
-            y
-            w
-        ]
-
-bar :: (Monad m) => Place -> Bar -> HudT m Double
-bar pl b = Hud $ \cs -> do
-  da <- use #chartDim
-  ca <- use #canvasDim
-  let c = bar_ pl b ca da
-  #chartDim .= addChartBox c da
-  pure $ c : cs
-
-title_ :: Title -> Rect Double -> Chart Double
-title_ t a =
-  Chart
-    ( TextA
-        ( style'
-            & #translate ?~ (realToFrac <$> (placePos' a + alignPos a))
-            & #rotation ?~ rot
-        )
-        [t ^. #text]
-    )
-    [zero]
-  where
-    style'
-      | t ^. #anchor == AnchorStart =
-        #anchor .~ AnchorStart $ t ^. #style
-      | t ^. #anchor == AnchorEnd =
-        #anchor .~ AnchorEnd $ t ^. #style
-      | otherwise = t ^. #style
-    rot
-      | t ^. #place == PlaceRight = 90.0
-      | t ^. #place == PlaceLeft = -90.0
-      | otherwise = 0
-    placePos' (Rect x z y w) = case t ^. #place of
-      PlaceTop -> Point ((x + z) / 2.0) (w + (t ^. #buff))
-      PlaceBottom ->
-        Point
-          ((x + z) / 2.0)
-          ( y - (t ^. #buff)
-              - 0.5
-              * realToFrac (t ^. #style . #vsize)
-              * realToFrac (t ^. #style . #size)
-          )
-      PlaceLeft -> Point (x - (t ^. #buff)) ((y + w) / 2.0)
-      PlaceRight -> Point (z + (t ^. #buff)) ((y + w) / 2.0)
-      PlaceAbsolute p -> p
-    alignPos (Rect x z y w)
-      | t ^. #anchor == AnchorStart
-          && t ^. #place `elem` [PlaceTop, PlaceBottom] =
-        Point ((x - z) / 2.0) 0.0
-      | t ^. #anchor == AnchorStart
-          && t ^. #place == PlaceLeft =
-        Point 0.0 ((y - w) / 2.0)
-      | t ^. #anchor == AnchorStart
-          && t ^. #place == PlaceRight =
-        Point 0.0 ((w - y) / 2.0)
-      | t ^. #anchor == AnchorEnd
-          && t ^. #place `elem` [PlaceTop, PlaceBottom] =
-        Point ((- x + z) / 2.0) 0.0
-      | t ^. #anchor == AnchorEnd
-          && t ^. #place == PlaceLeft =
-        Point 0.0 ((- y + w) / 2.0)
-      | t ^. #anchor == AnchorEnd
-          && t ^. #place == PlaceRight =
-        Point 0.0 ((y - w) / 2.0)
-      | otherwise = Point 0.0 0.0
-
--- | Add a title to a chart. The logic used to work out placement is flawed due to being able to freely specify text rotation.  It works for specific rotations (Top, Bottom at 0, Left at 90, Right @ 270)
-title :: (Monad m) => Title -> HudT m Double
-title t = Hud $ \cs -> do
-  ca <- use #chartDim
-  let c = title_ t ca
-  #chartDim .= addChartBox c ca
-  pure $ c : cs
-
-placePos :: Place -> Double -> Rect Double -> Point Double
-placePos pl b (Rect x z y w) = case pl of
-  PlaceTop -> Point 0 (w + b)
-  PlaceBottom -> Point 0 (y - b)
-  PlaceLeft -> Point (x - b) 0
-  PlaceRight -> Point (z + b) 0
-  PlaceAbsolute p -> p
-
-placeRot :: Place -> Maybe Double
-placeRot pl = case pl of
-  PlaceRight -> Just (-90.0)
-  PlaceLeft -> Just (-90.0)
-  _ -> Nothing
-
-textPos :: Place -> TextStyle -> Double -> Point Double
-textPos pl tt b = case pl of
-  PlaceTop -> Point 0 b
-  PlaceBottom -> Point 0 (- b - 0.5 * realToFrac (tt ^. #vsize) * realToFrac (tt ^. #size))
-  PlaceLeft ->
-    Point
-      (- b)
-      (realToFrac (tt ^. #nudge1) * realToFrac (tt ^. #vsize) * realToFrac (tt ^. #size))
-  PlaceRight ->
-    Point
-      b
-      (realToFrac (tt ^. #nudge1) * realToFrac (tt ^. #vsize) * realToFrac (tt ^. #size))
-  PlaceAbsolute p -> p
-
-placeRange :: Place -> Rect Double -> Range Double
-placeRange pl (Rect x z y w) = case pl of
-  PlaceRight -> Range y w
-  PlaceLeft -> Range y w
-  _ -> Range x z
-
-placeOrigin :: Place -> Double -> Point Double
-placeOrigin pl x
-  | pl `elem` [PlaceTop, PlaceBottom] = Point x 0
-  | otherwise = Point 0 x
-
-placeTextAnchor :: Place -> (TextStyle -> TextStyle)
-placeTextAnchor pl
-  | pl == PlaceLeft = #anchor .~ AnchorEnd
-  | pl == PlaceRight = #anchor .~ AnchorStart
-  | otherwise = id
-
-placeGridLines :: Place -> Rect Double -> Double -> Double -> [XY Double]
-placeGridLines pl (Rect x z y w) a b
-  | pl `elem` [PlaceTop, PlaceBottom] = [P a (y - b), P a (w + b)]
-  | otherwise = [P (x - b) a, P (z + b) a]
-
--- | compute tick values and labels given options, ranges and formatting
-ticksR :: TickStyle -> Range Double -> Range Double -> [(Double, Text)]
-ticksR s d r =
-  case s of
-    TickNone -> []
-    TickRound f n e -> zip (project r d <$> ticks0) (formatNs f ticks0)
-      where
-        ticks0 = gridSensible OuterPos (e == NoTickExtend) r (fromIntegral n :: Integer)
-    TickExact f n -> zip (project r d <$> ticks0) (formatNs f ticks0)
-      where
-        ticks0 = grid OuterPos r n
-    TickLabels ls ->
-      zip
-        ( project (Range 0 (fromIntegral $ length ls)) d
-            <$> ((\x -> x - 0.5) . fromIntegral <$> [1 .. length ls])
-        )
-        ls
-    TickPlaced xs -> zip (project r d . fst <$> xs) (snd <$> xs)
-
-data TickComponents
-  = TickComponents
-      { positions :: [Double],
-        labels :: [Text],
-        extension :: Maybe (Range Double)
-      }
-  deriving (Eq, Show, Generic)
-
--- | compute tick components given style, ranges and formatting
-makeTicks :: TickStyle -> Range Double -> TickComponents
-makeTicks s r =
-  case s of
-    TickNone -> TickComponents [] [] Nothing
-    TickRound f n e ->
-      TickComponents
-        ticks0
-        (formatNs f ticks0)
-        (bool (Just $ space1 ticks0) Nothing (e == NoTickExtend))
-      where
-        ticks0 = gridSensible OuterPos (e == NoTickExtend) r (fromIntegral n :: Integer)
-    TickExact f n -> TickComponents ticks0 (formatNs f ticks0) Nothing
-      where
-        ticks0 = grid OuterPos r n
-    TickLabels ls ->
-      TickComponents
-        ( project (Range 0 (fromIntegral $ length ls)) r
-            <$> ((\x -> x - 0.5) . fromIntegral <$> [1 .. length ls])
-        )
-        ls
-        Nothing
-    TickPlaced xs -> TickComponents (fst <$> xs) (snd <$> xs) Nothing
-
--- | compute tick values given placement, canvas dimension & data range
-ticksPlaced :: TickStyle -> Place -> Rect Double -> Rect Double -> TickComponents
-ticksPlaced ts pl d xs = TickComponents (project (placeRange pl xs) (placeRange pl d) <$> ps) ls ext
-  where
-    (TickComponents ps ls ext) = makeTicks ts (placeRange pl xs)
-
-tickGlyph_ :: Place -> (GlyphStyle, Double) -> TickStyle -> Rect Double -> Rect Double -> Rect Double -> Chart Double
-tickGlyph_ pl (g, b) ts ca da xs =
-  Chart
-    (GlyphA (g & #rotation .~ (realToFrac <$> placeRot pl)))
-    ( PointXY . (placePos pl b ca +) . placeOrigin pl
-        <$> positions
-          (ticksPlaced ts pl da xs)
-    )
-
--- | aka marks
-tickGlyph ::
-  (Monad m) =>
-  Place ->
-  (GlyphStyle, Double) ->
-  TickStyle ->
-  HudT m Double
-tickGlyph pl (g, b) ts = Hud $ \cs -> do
-  a <- use #chartDim
-  d <- use #canvasDim
-  xs <- use #dataDim
-  let c = tickGlyph_ pl (g, b) ts a d xs
-  #chartDim .= addToRect a (styleBox c)
-  pure $ c : cs
-
-tickText_ ::
-  Place ->
-  (TextStyle, Double) ->
-  TickStyle ->
-  Rect Double ->
-  Rect Double ->
-  Rect Double ->
-  [Chart Double]
-tickText_ pl (txts, b) ts ca da xs =
-  zipWith
-    ( \txt sp ->
-        Chart
-          ( TextA
-              (placeTextAnchor pl txts)
-              [txt]
-          )
-          [PointXY sp]
-    )
-    (labels $ ticksPlaced ts pl da xs)
-    ( (placePos pl b ca + textPos pl txts b +) . placeOrigin pl
-        <$> positions (ticksPlaced ts pl da xs)
-    )
-
--- | aka tick labels
-tickText ::
-  (Monad m) =>
-  Place ->
-  (TextStyle, Double) ->
-  TickStyle ->
-  HudT m Double
-tickText pl (txts, b) ts = Hud $ \cs -> do
-  ca <- use #chartDim
-  da <- use #canvasDim
-  xs <- use #dataDim
-  let c = tickText_ pl (txts, b) ts ca da xs
-  #chartDim .= addChartBoxes c ca
-  pure $ c <> cs
-
--- | aka grid lines
-tickLine ::
-  (Monad m) =>
-  Place ->
-  (LineStyle, Double) ->
-  TickStyle ->
-  HudT m Double
-tickLine pl (ls, b) ts = Hud $ \cs -> do
-  da <- use #canvasDim
-  xs <- use #dataDim
-  let c =
-        Chart (LineA ls) . (\x -> placeGridLines pl da x b)
-          <$> positions (ticksPlaced ts pl da xs)
-  #chartDim %= addChartBoxes c
-  pure $ c <> cs
-
--- | Create tick glyphs (marks), lines (grid) and text (labels)
-tick ::
-  (Monad m) =>
-  Place ->
-  Tick ->
-  HudT m Double
-tick pl t =
-  maybe mempty (\x -> tickGlyph pl x (t ^. #tstyle)) (t ^. #gtick)
-    <> maybe mempty (\x -> tickText pl x (t ^. #tstyle)) (t ^. #ttick)
-    <> maybe mempty (\x -> tickLine pl x (t ^. #tstyle)) (t ^. #ltick)
-    <> extendData pl t
-
--- | compute an extension to the Range if a tick went over the data bounding box
-computeTickExtension :: TickStyle -> Range Double -> Maybe (Range Double)
-computeTickExtension s r =
-  case s of
-    TickNone -> Nothing
-    TickRound _ n e -> bool Nothing (Just (space1 ticks0 <> r)) (e == TickExtend)
-      where
-        ticks0 = gridSensible OuterPos (e == NoTickExtend) r (fromIntegral n :: Integer)
-    TickExact _ _ -> Nothing
-    TickLabels _ -> Nothing
-    TickPlaced xs -> Just $ r <> space1 (fst <$> xs)
-
--- | Create a style extension for the data, if ticks extend beyond the existing range
-tickExtended ::
-  Place ->
-  Tick ->
-  Rect Double ->
-  Rect Double
-tickExtended pl t xs =
-  maybe
-    xs
-    (\x -> rangeext xs x)
-    (computeTickExtension (t ^. #tstyle) (ranged xs))
-  where
-    ranged xs' = case pl of
-      PlaceTop -> rangex xs'
-      PlaceBottom -> rangex xs'
-      PlaceLeft -> rangey xs'
-      PlaceRight -> rangey xs'
-      PlaceAbsolute _ -> rangex xs'
-    rangex (Rect x z _ _) = Range x z
-    rangey (Rect _ _ y w) = Range y w
-    rangeext (Rect x z y w) (Range a0 a1) = case pl of
-      PlaceTop -> Rect a0 a1 y w
-      PlaceBottom -> Rect a0 a1 y w
-      PlaceLeft -> Rect x z a0 a1
-      PlaceRight -> Rect x z a0 a1
-      PlaceAbsolute _ -> Rect a0 a1 y w
-
-extendData :: (Monad m) => Place -> Tick -> HudT m Double
-extendData pl t = Hud $ \cs -> do
-  #dataDim %= tickExtended pl t
-  pure cs
-
--- | adjust Tick for sane font sizes etc
-adjustTick ::
-  Adjustments ->
-  Rect Double ->
-  Rect Double ->
-  Place ->
-  Tick ->
-  Tick
-adjustTick (Adjustments mrx ma mry ad) vb cs pl t
-  | pl `elem` [PlaceBottom, PlaceTop] = case ad of
-    False -> t & #ttick . _Just . _1 . #size %~ (/ adjustSizeX)
-    True ->
-      case adjustSizeX > 1 of
-        True ->
-          ( case pl of
-              PlaceBottom -> #ttick . _Just . _1 . #anchor .~ AnchorEnd
-              PlaceTop -> #ttick . _Just . _1 . #anchor .~ AnchorStart
-              _ -> #ttick . _Just . _1 . #anchor .~ AnchorEnd
-          )
-            . (#ttick . _Just . _1 . #size %~ (/ adjustSizeA))
-            $ (#ttick . _Just . _1 . #rotation ?~ (-45)) t
-        False -> (#ttick . _Just . _1 . #size %~ (/ adjustSizeA)) t
-  | otherwise = -- pl `elem` [PlaceLeft, PlaceRight]
-    (#ttick . _Just . _1 . #size %~ (/ adjustSizeY)) t
-  where
-    max' [] = 1
-    max' xs = maximum xs
-    ra (Rect x z y w)
-      | pl `elem` [PlaceTop, PlaceBottom] = Range x z
-      | otherwise = Range y w
-    asp = ra vb
-    r = ra cs
-    tickl = snd <$> ticksR (t ^. #tstyle) asp r
-    maxWidth :: Double
-    maxWidth =
-      maybe
-        1
-        ( \tt ->
-            max' $
-              (\(Rect x z _ _) -> z - x)
-                . (\x -> styleBoxText (fst tt) x (Point 0 0)) <$> tickl
-        )
-        (t ^. #ttick)
-    maxHeight =
-      maybe
-        1
-        ( \tt ->
-            max' $
-              (\(Rect _ _ y w) -> w - y)
-                . (\x -> styleBoxText (fst tt) x (Point 0 0)) <$> tickl
-        )
-        (t ^. #ttick)
-    adjustSizeX :: Double
-    adjustSizeX = max' [(maxWidth / realToFrac (upper asp - lower asp)) / mrx, 1]
-    adjustSizeY = max' [(maxHeight / realToFrac (upper asp - lower asp)) / mry, 1]
-    adjustSizeA = max' [(maxHeight / realToFrac (upper asp - lower asp)) / ma, 1]
-
-adjustedTickHud :: (Monad m) => AxisOptions -> HudT m Double
-adjustedTickHud c = Hud $ \cs -> do
-  vb <- use #chartDim
-  xs <- use #dataDim
-  let adjTick =
-        maybe
-          (c ^. #atick)
-          (\x -> adjustTick x vb xs (c ^. #place) (c ^. #atick))
-          (c ^. #adjust)
-  unhud (tick (c ^. #place) adjTick) cs
-
--- | Convert a UTCTime list into sensible ticks, placed exactly
-makeTickDates :: PosDiscontinuous -> Maybe Text -> Int -> [UTCTime] -> [(Int, Text)]
-makeTickDates pc fmt n dates =
-  lastOnes (\(_, x0) (_, x1) -> x0 == x1) . fst $ placedTimeLabelDiscontinuous pc fmt n dates
-  where
-    lastOnes :: (a -> a -> Bool) -> [a] -> [a]
-    lastOnes _ [] = []
-    lastOnes _ [x] = [x]
-    lastOnes f (x : xs) = (\(x0, x1) -> reverse $ x0 : x1) $ foldl' step (x, []) xs
-      where
-        step (a0, rs) a1 = if f a0 a1 then (a1, rs) else (a1, a0 : rs)
-
--- | Convert a UTCTime list into sensible ticks, placed on the (0,1) space
-makeTickDatesContinuous :: PosDiscontinuous -> Maybe Text -> Int -> [UTCTime] -> [(Double, Text)]
-makeTickDatesContinuous pc fmt n dates = placedTimeLabelContinuous pc fmt n (l, u)
-  where
-    l = minimum dates
-    u = maximum dates
-
-legendHud :: LegendOptions -> [Chart Double] -> Hud Double
-legendHud l lcs = Hud $ \cs -> do
-  ca <- use #chartDim
-  let cs' = cs <> movedleg ca scaledleg
-  #chartDim .= fromMaybe one (styleBoxes cs')
-  pure cs'
-  where
-    scaledleg =
-      (#annotation %~ scaleAnn (realToFrac $ l ^. #lscale))
-        . (#xys %~ fmap (fmap (* l ^. #lscale)))
-        <$> lcs
-    movedleg ca' leg =
-      maybe id (moveChart . PointXY . placel (l ^. #lplace) ca') (styleBoxes leg) leg
-    placel pl (Rect x z y w) (Rect x' z' y' w') =
-      case pl of
-        PlaceTop -> Point ((x + z) / 2.0) (w + (w' - y') / 2.0)
-        PlaceBottom -> Point ((x + z) / 2.0) (y - (w' - y' / 2.0))
-        PlaceLeft -> Point (x - (z' - x') / 2.0) ((y + w) / 2.0)
-        PlaceRight -> Point (z + (z' - x') / 2.0) ((y + w) / 2.0)
-        PlaceAbsolute p -> p
-
-legendEntry ::
-  LegendOptions ->
-  Annotation ->
-  Text ->
-  (Chart Double, Chart Double)
-legendEntry l a t =
-  ( Chart ann sps,
-    Chart (TextA (l ^. #ltext & #anchor .~ AnchorStart) [t]) [zero]
-  )
-  where
-    (ann, sps) = case a of
-      RectA rs ->
-        ( RectA rs,
-          [R 0 (l ^. #lsize) 0 (l ^. #lsize)]
-        )
-      PixelA ps ->
-        ( PixelA ps,
-          [R 0 (l ^. #lsize) 0 (l ^. #lsize)]
-        )
-      TextA ts txts ->
-        ( TextA (ts & #size .~ realToFrac (l ^. #lsize)) (take 1 txts),
-          [zero]
-        )
-      GlyphA gs ->
-        ( GlyphA (gs & #size .~ realToFrac (l ^. #lsize)),
-          [P (0.5 * l ^. #lsize) (0.33 * l ^. #lsize)]
-        )
-      LineA ls ->
-        ( LineA (ls & #width %~ (/ (realToFrac $ l ^. #lscale))),
-          [P 0 (0.33 * l ^. #lsize), P (2 * l ^. #lsize) (0.33 * l ^. #lsize)]
-        )
-      BlankA ->
-        ( BlankA,
-          [zero]
-        )
-
-legendChart :: [(Annotation, Text)] -> LegendOptions -> [Chart Double]
-legendChart lrs l =
-  padChart (l ^. #outerPad)
-    . maybe id (\x -> frameChart x (l ^. #innerPad)) (l ^. #legendFrame)
-    . vert (l ^. #hgap)
-    $ (\(a, t) -> hori ((l ^. #vgap) + twidth - gapwidth t) [[t], [a]])
-      <$> es
-  where
-    es = reverse $ uncurry (legendEntry l) <$> lrs
-    twidth = maybe 0 (\(Rect _ z _ _) -> z) . foldRect $ catMaybes (styleBox . snd <$> es)
-    gapwidth t = maybe 0 (\(Rect _ z _ _) -> z) (styleBox t)
-
-legendFromChart :: [Text] -> [Chart Double] -> [(Annotation, Text)]
-legendFromChart = zipWith (\t c -> (c ^. #annotation, t))
-
-terms :: Text -> [Lucid.Attribute] -> Lucid.Html ()
-terms t = with $ makeXmlElementNoEnd t
-
--- | the extra area from text styling
-styleBoxText ::
-  TextStyle ->
-  Text ->
-  Point Double ->
-  Rect Double
-styleBoxText o t p = move (p + p') $ maybe flat (`rotateRect` flat) (o ^. #rotation)
-  where
-    flat = Rect ((- x' / 2.0) + x' * a') (x' / 2 + x' * a') ((- y' / 2) - n1') (y' / 2 - n1')
-    s = o ^. #size
-    h = o ^. #hsize
-    v = o ^. #vsize
-    n1 = o ^. #nudge1
-    x' = s * h * fromIntegral (sum $ maybe 0 Text.length . maybeTagText <$> parseTags t)
-    y' = s * v
-    n1' = s * n1
-    a' = case o ^. #anchor of
-      AnchorStart -> 0.5
-      AnchorEnd -> -0.5
-      AnchorMiddle -> 0.0
-    p' = fromMaybe (Point 0.0 0.0) (o ^. #translate)
-
--- | the extra area from glyph styling
-styleBoxGlyph :: GlyphStyle -> Rect Double
-styleBoxGlyph s = move p' $ sw $ case sh of
-  EllipseGlyph a -> NH.scale (Point sz (a * sz)) one
-  RectSharpGlyph a -> NH.scale (Point sz (a * sz)) one
-  RectRoundedGlyph a _ _ -> NH.scale (Point sz (a * sz)) one
-  VLineGlyph _ -> NH.scale (Point ((s ^. #borderSize) * sz) sz) one
-  HLineGlyph _ -> NH.scale (Point sz ((s ^. #borderSize) * sz)) one
-  TriangleGlyph a b c -> (sz *) <$> sconcat (toRect . PointXY <$> (a :| [b, c]) :: NonEmpty (Rect Double))
-  _ -> (sz *) <$> one
-  where
-    sh = s ^. #shape
-    sz = s ^. #size
-    sw = padRect (0.5 * s ^. #borderSize)
-    p' = fromMaybe (Point 0.0 0.0) (s ^. #translate)
-
--- | the geometric dimensions of a Chart inclusive of style geometry
-styleBox :: Chart Double -> Maybe (Rect Double)
-styleBox (Chart (TextA s ts) xs) = foldRect $ zipWith (\t x -> styleBoxText s t (toPoint x)) ts xs
-styleBox (Chart (GlyphA s) xs) = foldRect $ (\x -> move (toPoint x) (styleBoxGlyph s)) <$> xs
-styleBox (Chart (RectA s) xs) = foldRect (padRect (0.5 * s ^. #borderSize) . toRect <$> xs)
-styleBox (Chart (LineA s) xs) = foldRect (padRect (0.5 * s ^. #width) . toRect <$> xs)
-styleBox (Chart BlankA xs) = foldRect (toRect <$> xs)
-styleBox (Chart (PixelA s) xs) = foldRect (padRect (0.5 * s ^. #pixelRectStyle . #borderSize) . toRect <$> xs)
-
--- | the extra geometric dimensions of a [Chart]
-styleBoxes :: [Chart Double] -> Maybe (Rect Double)
-styleBoxes xss = foldRect $ catMaybes (styleBox <$> xss)
-
--- | geometric dimensions of a [Chart] not including style
-noStyleBoxes :: [Chart Double] -> Maybe (Rect Double)
-noStyleBoxes cs = foldRect $ toRect <$> mconcat (view #xys <$> cs)
-
--- | calculate the linear gradient to shove in defs
--- FIXME: Only works for #pixelGradient = 0 or pi//2. Can do much better with something like https://stackoverflow.com/questions/9025678/how-to-get-a-rotated-linear-gradient-svg-for-use-as-a-background-image
-lgPixel :: PixelStyle -> Lucid.Html ()
-lgPixel o =
-  term
-    "linearGradient"
-    [ Lucid.id_ (o ^. #pixelTextureId),
-      Lucid.makeAttribute "x1" (show x0),
-      Lucid.makeAttribute "y1" (show y0),
-      Lucid.makeAttribute "x2" (show x1),
-      Lucid.makeAttribute "y2" (show y1)
-    ]
-    ( mconcat
-        [ terms
-            "stop"
-            [ Lucid.makeAttribute "stop-opacity" (show $ opac $ o ^. #pixelColorMin),
-              Lucid.makeAttribute "stop-color" (toHex (o ^. #pixelColorMin)),
-              Lucid.makeAttribute "offset" "0"
-            ],
-          terms
-            "stop"
-            [ Lucid.makeAttribute "stop-opacity" (show $ opac $ o ^. #pixelColorMax),
-              Lucid.makeAttribute "stop-color" (toHex (o ^. #pixelColorMax)),
-              Lucid.makeAttribute "offset" "1"
-            ]
-        ]
-    )
-  where
-    x0 = min 0 (cos (o ^. #pixelGradient))
-    x1 = max 0 (cos (o ^. #pixelGradient))
-    y0 = max 0 (sin (o ^. #pixelGradient))
-    y1 = min 0 (sin (o ^. #pixelGradient))
-
--- | get chart definitions
-chartDefs :: [Chart a] -> Lucid.Html ()
-chartDefs cs = bool (term "defs" (mconcat ds)) mempty (0 == length ds)
-  where
-    ds = mconcat $ chartDef <$> cs
-
-chartDef :: Chart a -> [Lucid.Html ()]
-chartDef c = case c of
-  (Chart (PixelA s) _) -> [lgPixel s]
-  _ -> []
-
--- | Rectangle svg
-svgRect :: Rect Double -> Lucid.Html ()
-svgRect (Rect x z y w) =
-  terms
-    "rect"
-    [ width_ (show $ z - x),
-      height_ (show $ w - y),
-      term "x" (show x),
-      term "y" (show $ - w)
-    ]
-
--- | Text svg
-svgText :: TextStyle -> Text -> Point Double -> Lucid.Html ()
-svgText s t p@(Point x y) =
-  bool id (term "g" [class_ "hasmathjax"]) (s ^. #hasMathjax) $
-    term
-      "text"
-      ( [ term "x" (show x),
-          term "y" (show $ - y)
-        ]
-          <> maybe [] (\x' -> [term "transform" (toRotateText x' p)]) (s ^. #rotation)
-      )
-      (toHtmlRaw t)
-
--- | line svg
-svgLine :: [Point Double] -> Lucid.Html ()
-svgLine [] = mempty
-svgLine xs = terms "polyline" [term "points" (toPointsText xs)]
-  where
-    toPointsText xs' = Text.intercalate "\n" $ (\(Point x y) -> show x <> "," <> show (- y)) <$> xs'
-
--- | GlyphShape to svg Tree
-svgShape :: GlyphShape -> Double -> Point Double -> Lucid.Html ()
-svgShape CircleGlyph s (Point x y) =
-  terms
-    "circle"
-    [ term "cx" (show x),
-      term "cy" (show $ - y),
-      term "r" (show $ 0.5 * s)
-    ]
-svgShape SquareGlyph s p =
-  svgRect (move p ((s *) <$> one))
-svgShape (RectSharpGlyph x') s p =
-  svgRect (move p (NH.scale (Point s (x' * s)) one))
-svgShape (RectRoundedGlyph x' rx ry) s p =
-  terms
-    "rect"
-    [ term "width" (show $ z - x),
-      term "height" (show $ w - y),
-      term "x" (show x),
-      term "y" (show $ - w),
-      term "rx" (show rx),
-      term "ry" (show ry)
-    ]
-  where
-    (Rect x z y w) = move p (NH.scale (Point s (x' * s)) one)
-svgShape (TriangleGlyph (Point xa ya) (Point xb yb) (Point xc yc)) s p =
-  terms
-    "polygon"
-    [ term "transform" (toTranslateText p),
-      term "points" (show (s * xa) <> "," <> show (- (s * ya)) <> " " <> show (s * xb) <> "," <> show (- (s * yb)) <> " " <> show (s * xc) <> "," <> show (- (s * yc)))
-    ]
-svgShape (EllipseGlyph x') s (Point x y) =
-  terms
-    "ellipse"
-    [ term "cx" (show x),
-      term "cy" (show $ - y),
-      term "rx" (show $ 0.5 * s),
-      term "ry" (show $ 0.5 * s * x')
-    ]
-svgShape (VLineGlyph _) s (Point x y) =
-  terms "polyline" [term "points" (show x <> "," <> show (- (y - s / 2)) <> "\n" <> show x <> "," <> show (- (y + s / 2)))]
-svgShape (HLineGlyph _) s (Point x y) =
-  terms "polyline" [term "points" (show (x - s / 2) <> "," <> show (- y) <> "\n" <> show (x + s / 2) <> "," <> show (- y))]
-svgShape (PathGlyph path) _ p =
-  terms "path" [term "d" path, term "transform" (toTranslateText p)]
-
--- | GlyphStyle to svg Tree
-svgGlyph :: GlyphStyle -> Point Double -> Lucid.Html ()
-svgGlyph s p =
-  svgShape (s ^. #shape) (s ^. #size) (realToFrac <$> p)
-    & maybe id (\r -> term "g" [term "transform" (toRotateText r p)]) (s ^. #rotation)
-
--- | convert a Chart to svg
-svg :: Chart Double -> Lucid.Html ()
-svg (Chart (TextA s ts) xs) =
-  term "g" (attsText s) (mconcat $ zipWith (\t p -> svgText s t (toPoint p)) ts xs)
-svg (Chart (GlyphA s) xs) =
-  term "g" (attsGlyph s) (mconcat $ svgGlyph s . toPoint <$> xs)
-svg (Chart (LineA s) xs) =
-  term "g" (attsLine s) (svgLine $ toPoint <$> xs)
-svg (Chart (RectA s) xs) =
-  term "g" (attsRect s) (mconcat $ svgRect . toRect <$> xs)
-svg (Chart (PixelA s) xs) =
-  term "g" (attsPixel s) (mconcat $ svgRect . toRect <$> xs)
-svg (Chart BlankA _) = mempty
-
--- | add a tooltip to a chart
-svgt :: Chart Double -> (TextStyle, Text) -> Lucid.Html ()
-svgt (Chart (TextA s ts) xs) (s', ts') =
-  term "g" (attsText s) (Lucid.title_ (attsText s') (Lucid.toHtml ts') <> mconcat (zipWith (\t p -> svgText s t (toPoint p)) ts xs))
-svgt (Chart (GlyphA s) xs) (s', ts') =
-  term "g" (attsGlyph s) (Lucid.title_ (attsText s') (Lucid.toHtml ts') <> mconcat (svgGlyph s . toPoint <$> xs))
-svgt (Chart (LineA s) xs) (s', ts') =
-  term "g" (attsLine s) (Lucid.title_ (attsText s') (Lucid.toHtml ts') <> svgLine (toPoint <$> xs))
-svgt (Chart (RectA s) xs) (s', ts') =
-  term "g" (attsRect s) (Lucid.title_ (attsText s') (Lucid.toHtml ts') <> mconcat (svgRect . toRect <$> xs))
-svgt (Chart (PixelA s) xs) (s', ts') =
-  term "g" (attsPixel s) (Lucid.title_ (attsText s') (Lucid.toHtml ts') <> mconcat (svgRect . toRect <$> xs))
-svgt (Chart BlankA _) _ = mempty
-
--- * Style to Attributes
-
-attsRect :: RectStyle -> [Lucid.Attribute]
-attsRect o =
-  [ term "stroke-width" (show $ o ^. #borderSize),
-    term "stroke" (hex $ o ^. #borderColor),
-    term "stroke-opacity" (show $ opac $ o ^. #borderColor),
-    term "fill" (hex $ o ^. #color),
-    term "fill-opacity" (show $ opac $ o ^. #color)
-  ]
-
-attsPixel :: PixelStyle -> [Lucid.Attribute]
-attsPixel o =
-  [ term "stroke-width" (show $ o ^. #pixelRectStyle . #borderSize),
-    term "stroke" (toHex $ o ^. #pixelRectStyle . #borderColor),
-    term "stroke-opacity" (show $ opac $ o ^. #pixelRectStyle . #borderColor),
-    term "fill" ("url(#" <> (o ^. #pixelTextureId) <> ")")
-  ]
-
-attsText :: TextStyle -> [Lucid.Attribute]
-attsText o =
-  [ term "stroke-width" "0.0",
-    term "stroke" "none",
-    term "fill" (toHex $ o ^. #color),
-    term "fill-opacity" (show $ opac $ o ^. #color),
-    term "font-size" (show $ o ^. #size),
-    term "text-anchor" (toTextAnchor $ o ^. #anchor)
-  ]
-    <> maybe [] ((: []) . term "transform" . toTranslateText) (o ^. #translate)
-  where
-    toTextAnchor :: Anchor -> Text
-    toTextAnchor AnchorMiddle = "middle"
-    toTextAnchor AnchorStart = "start"
-    toTextAnchor AnchorEnd = "end"
-
-attsGlyph :: GlyphStyle -> [Lucid.Attribute]
-attsGlyph o =
-  [ term "stroke-width" (show $ o ^. #borderSize),
-    term "stroke" (toHex $ o ^. #borderColor),
-    term "stroke-opacity" (show $ opac $ o ^. #borderColor),
-    term "fill" (toHex $ o ^. #color),
-    term "fill-opacity" (show $ opac $ o ^. #color)
-  ]
-    <> maybe [] ((: []) . term "transform" . toTranslateText) (o ^. #translate)
-
-attsLine :: LineStyle -> [Lucid.Attribute]
-attsLine o =
-  [ term "stroke-width" (show $ o ^. #width),
-    term "stroke" (toHex $ o ^. #color),
-    term "stroke-opacity" (show $ opac $ o ^. #color),
-    term "fill" "none"
-  ]
-
-toTranslateText :: Point Double -> Text
-toTranslateText (Point x y) =
-  "translate(" <> show x <> ", " <> show (- y) <> ")"
-
-toRotateText :: Double -> Point Double -> Text
-toRotateText r (Point x y) =
-  "rotate(" <> show r <> ", " <> show x <> ", " <> show (- y) <> ")"
-
--- | additively pad a [Chart]
---
--- >>> padChart 0.1 [Chart (RectA defaultRectStyle) [RectXY one]]
--- [Chart {annotation = RectA (RectStyle {borderSize = 1.0e-2, borderColor = RGBA 0.12 0.47 0.71 0.80, color = RGBA 0.12 0.47 0.71 0.30}), xys = [RectXY Rect -0.5 0.5 -0.5 0.5]},Chart {annotation = BlankA, xys = [RectXY Rect -0.605 0.605 -0.605 0.605]}]
-padChart :: Double -> [Chart Double] -> [Chart Double]
-padChart p cs = cs <> [Chart BlankA (maybeToList (RectXY . padRect p <$> styleBoxes cs))]
-
--- | overlay a frame on some charts with some additive padding between
---
--- >>> frameChart defaultRectStyle 0.1 [Chart BlankA []]
--- [Chart {annotation = RectA (RectStyle {borderSize = 1.0e-2, borderColor = RGBA 0.12 0.47 0.71 0.80, color = RGBA 0.12 0.47 0.71 0.30}), xys = []},Chart {annotation = BlankA, xys = []}]
-frameChart :: RectStyle -> Double -> [Chart Double] -> [Chart Double]
-frameChart rs p cs = [Chart (RectA rs) (maybeToList (RectXY . padRect p <$> styleBoxes cs))] <> cs
-
--- horizontally stack a list of list of charts (proceeding to the right) with a gap between
-hori :: Double -> [[Chart Double]] -> [Chart Double]
-hori _ [] = []
-hori gap cs = foldl step [] cs
-  where
-    step x a = x <> (a & fmap (#xys %~ fmap (\s -> P (z x) 0 - P (origx x) 0 + s)))
-    z xs = maybe 0 (\(Rect _ z' _ _) -> z' + gap) (styleBoxes xs)
-    origx xs = maybe 0 (\(Rect x' _ _ _) -> x') (styleBoxes xs)
-
--- vertically stack a list of charts (proceeding upwards), aligning them to the left
-vert :: Double -> [[Chart Double]] -> [Chart Double]
-vert _ [] = []
-vert gap cs = foldl step [] cs
-  where
-    step x a = x <> (a & fmap (#xys %~ fmap (\s -> P (origx x - origx a) (w x) + s)))
-    w xs = maybe 0 (\(Rect _ _ _ w') -> w' + gap) (styleBoxes xs)
-    origx xs = maybe 0 (\(Rect x' _ _ _) -> x') (styleBoxes xs)
-
--- stack a list of charts horizontally, then vertically
+{-# LANGUAGE DeriveGeneric #-}
+{-# LANGUAGE DuplicateRecordFields #-}
+{-# LANGUAGE FlexibleContexts #-}
+{-# LANGUAGE FlexibleInstances #-}
+{-# LANGUAGE MultiParamTypeClasses #-}
+{-# LANGUAGE NegativeLiterals #-}
+{-# LANGUAGE OverloadedLabels #-}
+{-# LANGUAGE OverloadedStrings #-}
+{-# LANGUAGE RankNTypes #-}
+{-# LANGUAGE RebindableSyntax #-}
+{-# LANGUAGE TypeFamilies #-}
+{-# OPTIONS_GHC -Wall #-}
+{-# OPTIONS_GHC -fno-warn-name-shadowing #-}
+{-# OPTIONS_GHC -fno-warn-overlapping-patterns #-}
+{-# OPTIONS_GHC -fno-warn-type-defaults #-}
+
+-- | Chart API
+module Chart.Types
+  ( -- * Chart
+    Chart (..),
+    moveChart,
+    projectXYs,
+    projectXYsWith,
+    projectArcPosition,
+
+    -- * Annotation
+    Annotation (..),
+    annotationText,
+    scaleAnn,
+    padRect,
+
+    -- * Styles
+    RectStyle (..),
+    defaultRectStyle,
+    blob,
+    clear,
+    border,
+    TextStyle (..),
+    defaultTextStyle,
+    GlyphStyle (..),
+    defaultGlyphStyle,
+    GlyphShape (..),
+    glyphText,
+    LineStyle (..),
+    defaultLineStyle,
+    LineCap (..),
+    fromLineCap,
+    toLineCap,
+    LineJoin (..),
+    fromLineJoin,
+    toLineJoin,
+    fromDashArray,
+    Anchor (..),
+    fromAnchor,
+    toAnchor,
+    PathStyle (..),
+    toPathChart,
+    defaultPathStyle,
+
+    -- * Hud types
+    ChartDims (..),
+    HudT (..),
+    Hud,
+    simulHud,
+    HudOptions (..),
+    defaultHudOptions,
+    defaultCanvas,
+    runHudWith,
+    runHud,
+    makeHud,
+    ChartAspect (..),
+    toChartAspect,
+    fromChartAspect,
+    initialCanvas,
+    chartAspectHud,
+    canvas,
+    title,
+    tick,
+
+    -- * Hud primitives
+    AxisOptions (..),
+    defaultAxisOptions,
+    flipAxis,
+    Place (..),
+    placeText,
+    AxisBar (..),
+    defaultAxisBar,
+    Title (..),
+    defaultTitle,
+    Tick (..),
+    defaultGlyphTick,
+    defaultTextTick,
+    defaultLineTick,
+    defaultTick,
+    TickStyle (..),
+    defaultTickStyle,
+    tickStyleText,
+    TickExtend (..),
+    adjustTick,
+    makeTickDates,
+    makeTickDatesContinuous,
+    Adjustments (..),
+    defaultAdjustments,
+    LegendOptions (..),
+    defaultLegendOptions,
+    legendHud,
+    Orientation (..),
+    fromOrientation,
+    toOrientation,
+
+    -- * SVG primitives
+    CssOptions (..),
+    SvgOptions (..),
+    defaultSvgOptions,
+    defaultSvgFrame,
+
+    -- * Chart manipulation
+    padChart,
+    frameChart,
+    hori,
+    vert,
+    stack,
+
+    -- * Bounding box calculation
+    padBox,
+    dataBox,
+    dataBoxes,
+    dataBoxesS,
+    styleBox,
+    styleBoxes,
+    styleBoxesS,
+    styleBoxText,
+    styleBoxGlyph,
+  )
+where
+
+import Control.Lens
+import Data.Colour
+import Data.FormatN
+import Data.Generics.Labels ()
+import Data.List ((!!))
+import Data.Path
+import qualified Data.Text as Text
+import Data.Time
+import NumHask.Prelude
+import NumHask.Space as NH hiding (Element)
+import Text.HTML.TagSoup hiding (Attribute)
+import qualified Prelude as P
+
+-- $setup
+--
+-- >>> :set -XOverloadedLabels
+-- >>> :set -XNoImplicitPrelude
+-- >>> -- import NumHask.Prelude
+-- >>> import Control.Lens
+-- >>> import Chart.Render
+
+-- * Chart
+
+-- | A `Chart` is annotated xy-data.
+data Chart a = Chart
+  { -- | annotation style for the data
+    annotation :: Annotation,
+    -- | list of data elements, either points or rectangles.
+    xys :: [XY a]
+  }
+  deriving (Eq, Show, Generic)
+
+-- | How data will be represented onscreen.
+--
+-- The definition of what might be an Annotation type is opinionated.
+--
+-- More complex combinations across Annotations can be constructed from combining charts.  See 'Chart.Example.glinesExample', 'Chart.Examples.lglyphExample' and "Chart.Bar" for examples.
+--
+-- There may be exceptions, but the approximate magnitude of annotation values are in reference to the size of the screen.  For example, a size of 0.01 (say), will means about 1% of the height and/or width of the screen height or width.
+data Annotation
+  = RectA RectStyle
+  | TextA TextStyle [Text]
+  | GlyphA GlyphStyle
+  | LineA LineStyle
+  | PathA PathStyle [PathInfo Double]
+  | BlankA
+  deriving (Eq, Show, Generic)
+
+-- | textifier
+annotationText :: Annotation -> Text
+annotationText (RectA _) = "RectA"
+annotationText TextA {} = "TextA"
+annotationText (GlyphA _) = "GlyphA"
+annotationText (LineA _) = "LineA"
+annotationText PathA {} = "PathA"
+annotationText BlankA = "BlankA"
+
+-- | Rectangle styling
+--
+-- >>> defaultRectStyle
+-- RectStyle {borderSize = 1.0e-2, borderColor = RGBA 0.12 0.47 0.71 0.80, color = RGBA 0.12 0.47 0.71 0.30}
+--
+-- > writeChartSvgDefault "other/unit.svg" [Chart (RectA defaultRectStyle) [one]]
+--
+-- ![unit example](other/unit.svg)
+data RectStyle = RectStyle
+  { borderSize :: Double,
+    borderColor :: Colour,
+    color :: Colour
+  }
+  deriving (Show, Eq, Generic)
+
+-- | the style
+defaultRectStyle :: RectStyle
+defaultRectStyle = RectStyle 0.01 (fromRGB (palette !! 1) 0.8) (fromRGB (palette !! 1) 0.3)
+
+-- | solid rectangle, no border
+--
+-- >>> blob black
+-- RectStyle {borderSize = 0.0, borderColor = RGBA 0.00 0.00 0.00 0.00, color = RGBA 0.00 0.00 0.00 1.00}
+blob :: Colour -> RectStyle
+blob = RectStyle 0 transparent
+
+-- | transparent rect
+--
+-- >>> clear
+-- RectStyle {borderSize = 0.0, borderColor = RGBA 0.00 0.00 0.00 0.00, color = RGBA 0.00 0.00 0.00 0.00}
+clear :: RectStyle
+clear = RectStyle 0 transparent transparent
+
+-- | transparent rectangle, with border
+--
+-- >>> border 0.01 transparent
+-- RectStyle {borderSize = 1.0e-2, borderColor = RGBA 0.00 0.00 0.00 0.00, color = RGBA 0.00 0.00 0.00 0.00}
+border :: Double -> Colour -> RectStyle
+border s c = RectStyle s c transparent
+
+-- | Text styling
+--
+-- >>> defaultTextStyle
+-- TextStyle {size = 8.0e-2, color = RGBA 0.20 0.20 0.20 1.00, anchor = AnchorMiddle, hsize = 0.5, vsize = 1.45, nudge1 = -0.2, rotation = Nothing, translate = Nothing}
+--
+-- >>> let t = zipWith (\x y -> Chart (TextA (defaultTextStyle & (#size .~ (0.05 :: Double))) [x]) [PointXY y]) (fmap Text.singleton ['a' .. 'y']) [Point (sin (x * 0.1)) x | x <- [0 .. 25]]
+--
+-- > writeChartSvgDefault "other/text.svg" t
+--
+-- ![text example](other/text.svg)
+data TextStyle = TextStyle
+  { size :: Double,
+    color :: Colour,
+    anchor :: Anchor,
+    hsize :: Double,
+    vsize :: Double,
+    nudge1 :: Double,
+    rotation :: Maybe Double,
+    translate :: Maybe (Point Double)
+  }
+  deriving (Show, Eq, Generic)
+
+-- | position anchor
+data Anchor = AnchorMiddle | AnchorStart | AnchorEnd deriving (Eq, Show, Generic)
+
+-- | text
+fromAnchor :: (IsString s) => Anchor -> s
+fromAnchor AnchorMiddle = "Middle"
+fromAnchor AnchorStart = "Start"
+fromAnchor AnchorEnd = "End"
+
+-- | from text
+toAnchor :: (Eq s, IsString s) => s -> Anchor
+toAnchor "Middle" = AnchorMiddle
+toAnchor "Start" = AnchorStart
+toAnchor "End" = AnchorEnd
+toAnchor _ = AnchorMiddle
+
+-- | the offical text style
+defaultTextStyle :: TextStyle
+defaultTextStyle =
+  TextStyle 0.08 colorText AnchorMiddle 0.5 1.45 -0.2 Nothing Nothing
+
+-- | Glyph styling
+--
+-- >>> defaultGlyphStyle
+-- GlyphStyle {size = 3.0e-2, color = RGBA 0.65 0.81 0.89 0.30, borderColor = RGBA 0.12 0.47 0.71 0.80, borderSize = 3.0e-3, shape = SquareGlyph, rotation = Nothing, translate = Nothing}
+--
+-- See 'Chart.Examples.glyphsExample'.
+--
+-- ![glyph example](other/glyphs.svg)
+data GlyphStyle = GlyphStyle
+  { -- | glyph radius
+    size :: Double,
+    -- | fill color
+    color :: Colour,
+    -- | stroke color
+    borderColor :: Colour,
+    -- | stroke width (adds a bit to the bounding box)
+    borderSize :: Double,
+    shape :: GlyphShape,
+    rotation :: Maybe Double,
+    translate :: Maybe (Point Double)
+  }
+  deriving (Show, Eq, Generic)
+
+-- | the offical glyph style
+defaultGlyphStyle :: GlyphStyle
+defaultGlyphStyle =
+  GlyphStyle
+    0.03
+    (fromRGB (P.head palette) 0.3)
+    (fromRGB (palette !! 1) 0.8)
+    0.003
+    SquareGlyph
+    Nothing
+    Nothing
+
+-- | glyph shapes
+data GlyphShape
+  = CircleGlyph
+  | SquareGlyph
+  | EllipseGlyph Double
+  | RectSharpGlyph Double
+  | RectRoundedGlyph Double Double Double
+  | TriangleGlyph (Point Double) (Point Double) (Point Double)
+  | VLineGlyph Double
+  | HLineGlyph Double
+  | PathGlyph Text
+  deriving (Show, Eq, Generic)
+
+-- | textifier
+glyphText :: GlyphShape -> Text
+glyphText sh =
+  case sh of
+    CircleGlyph -> "Circle"
+    SquareGlyph -> "Square"
+    TriangleGlyph {} -> "Triangle"
+    EllipseGlyph _ -> "Ellipse"
+    RectSharpGlyph _ -> "RectSharp"
+    RectRoundedGlyph {} -> "RectRounded"
+    VLineGlyph _ -> "VLine"
+    HLineGlyph _ -> "HLine"
+    PathGlyph _ -> "Path"
+
+-- | line cap style
+data LineCap = LineCapButt | LineCapRound | LineCapSquare deriving (Eq, Show, Generic)
+
+-- | textifier
+fromLineCap :: (IsString s) => LineCap -> s
+fromLineCap LineCapButt = "butt"
+fromLineCap LineCapRound = "round"
+fromLineCap LineCapSquare = "square"
+
+-- | readifier
+toLineCap :: (Eq s, IsString s) => s -> LineCap
+toLineCap "butt" = LineCapButt
+toLineCap "round" = LineCapRound
+toLineCap "square" = LineCapSquare
+toLineCap _ = LineCapButt
+
+-- | line cap style
+data LineJoin = LineJoinMiter | LineJoinBevel | LineJoinRound deriving (Eq, Show, Generic)
+
+-- | textifier
+fromLineJoin :: (IsString s) => LineJoin -> s
+fromLineJoin LineJoinMiter = "miter"
+fromLineJoin LineJoinBevel = "bevel"
+fromLineJoin LineJoinRound = "round"
+
+-- | readifier
+toLineJoin :: (Eq s, IsString s) => s -> LineJoin
+toLineJoin "miter" = LineJoinMiter
+toLineJoin "bevel" = LineJoinBevel
+toLineJoin "round" = LineJoinRound
+toLineJoin _ = LineJoinMiter
+
+-- | Convert a dash representation from a list to text
+fromDashArray :: [Double] -> Text
+fromDashArray xs = Text.intercalate " " $ show <$> xs
+
+-- | line style
+--
+-- >>> defaultLineStyle
+-- LineStyle {width = 1.2e-2, color = RGBA 0.65 0.81 0.89 0.30, linecap = Nothing, linejoin = Nothing, dasharray = Nothing, dashoffset = Nothing}
+--
+-- ![line example](other/line.svg)
+--
+-- See also <https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute>
+data LineStyle = LineStyle
+  { width :: Double,
+    color :: Colour,
+    linecap :: Maybe LineCap,
+    linejoin :: Maybe LineJoin,
+    dasharray :: Maybe [Double],
+    dashoffset :: Maybe Double
+  }
+  deriving (Show, Eq, Generic)
+
+-- | the official default line style
+defaultLineStyle :: LineStyle
+defaultLineStyle = LineStyle 0.012 (fromRGB (P.head palette) 0.3) Nothing Nothing Nothing Nothing
+
+-- | Path styling
+--
+-- >>> defaultPathStyle
+-- PathStyle {borderSize = 1.0e-2, borderColor = RGBA 0.12 0.47 0.71 0.80, color = RGBA 0.12 0.47 0.71 0.30}
+data PathStyle = PathStyle
+  { borderSize :: Double,
+    borderColor :: Colour,
+    color :: Colour
+  }
+  deriving (Show, Eq, Generic)
+
+-- | the style
+defaultPathStyle :: PathStyle
+defaultPathStyle =
+  PathStyle 0.01 (fromRGB (palette !! 1) 0.8) (fromRGB (palette !! 1) 0.3)
+
+-- | Convert from a path command list to a PathA chart
+toPathChart :: PathStyle -> [(PathInfo Double, Point Double)] -> Chart Double
+toPathChart ps xs = Chart (PathA ps (fst <$> xs)) (PointXY . snd <$> xs)
+
+-- | Verticle or Horizontal
+data Orientation = Vert | Hori deriving (Eq, Show, Generic)
+
+-- | textifier
+fromOrientation :: (IsString s) => Orientation -> s
+fromOrientation Hori = "Hori"
+fromOrientation Vert = "Vert"
+
+-- | readifier
+toOrientation :: (Eq s, IsString s) => s -> Orientation
+toOrientation "Hori" = Hori
+toOrientation "Vert" = Vert
+toOrientation _ = Hori
+
+-- | additive padding
+padRect :: (Num a) => a -> Rect a -> Rect a
+padRect p (Rect x z y w) = Rect (x P.- p) (z P.+ p) (y P.- p) (w P.+ p)
+
+-- |
+data CssOptions = UseGeometricPrecision | UseCssCrisp | NoCssOptions deriving (Show, Eq, Generic)
+
+-- | The basis for the x-y ratio of the final chart
+--
+-- Default style features tend towards assuming that the usual height of the overall svg image is around 1, and ChartAspect is based on this assumption, so that a ChartAspect of "FixedAspect 1.5", say, means a height of 1 and a width of 1.5.
+data ChartAspect
+  = -- | Rescale charts to a fixed x-y ratio, inclusive of hud and style features
+    FixedAspect Double
+  | -- | Rescale charts to an overall height of 1, preserving the x-y ratio of the data canvas.
+    CanvasAspect Double
+  | -- | Rescale charts to a height of 1, preserving the existing x-y ratio of the underlying charts, inclusive of hud and style.
+    ChartAspect
+  | -- | Do not rescale.
+    UnadjustedAspect
+  deriving (Show, Eq, Generic)
+
+-- | textifier
+fromChartAspect :: (IsString s) => ChartAspect -> s
+fromChartAspect (FixedAspect _) = "FixedAspect"
+fromChartAspect (CanvasAspect _) = "CanvasAspect"
+fromChartAspect ChartAspect = "ChartAspect"
+fromChartAspect UnadjustedAspect = "UnadjustedAspect"
+
+-- | readifier
+toChartAspect :: (Eq s, IsString s) => s -> Double -> ChartAspect
+toChartAspect "FixedAspect" a = FixedAspect a
+toChartAspect "CanvasAspect" a = CanvasAspect a
+toChartAspect "ChartAspect" _ = ChartAspect
+toChartAspect "UnadjustedAspect" _ = UnadjustedAspect
+toChartAspect _ _ = ChartAspect
+
+-- | calculation of the canvas given the 'ChartAspect'
+initialCanvas :: ChartAspect -> [Chart Double] -> Rect Double
+initialCanvas (FixedAspect a) _ = aspect a
+initialCanvas (CanvasAspect a) _ = aspect a
+initialCanvas ChartAspect cs = aspect $ ratio $ styleBoxesS cs
+initialCanvas UnadjustedAspect cs = dataBoxesS cs
+
+-- | SVG tag options.
+--
+-- >>> defaultSvgOptions
+-- SvgOptions {svgHeight = 300.0, outerPad = Just 2.0e-2, innerPad = Nothing, chartFrame = Nothing, cssOptions = NoCssOptions, chartAspect = FixedAspect 1.5}
+--
+-- > writeChartSvg "other/svgoptions.svg" (SvgChart (defaultSvgOptions & #chartAspect .~ FixedAspect 0.7) mempty [] lines)
+--
+-- ![svgoptions example](other/svgoptions.svg)
+data SvgOptions = SvgOptions
+  { svgHeight :: Double,
+    outerPad :: Maybe Double,
+    innerPad :: Maybe Double,
+    chartFrame :: Maybe RectStyle,
+    cssOptions :: CssOptions,
+    chartAspect :: ChartAspect
+  }
+  deriving (Eq, Show, Generic)
+
+-- | The official svg options
+defaultSvgOptions :: SvgOptions
+defaultSvgOptions = SvgOptions 300 (Just 0.02) Nothing Nothing NoCssOptions (FixedAspect 1.5)
+
+-- | frame style
+defaultSvgFrame :: RectStyle
+defaultSvgFrame = border 0.01 (fromRGB (grayscale 0.7) 0.5)
+
+-- | Dimensions that are tracked in the 'HudT':
+--
+-- - chartDim: the rectangular dimension of the physical representation of a chart on the screen so that new hud elements can be appended. Adding a hud piece tends to expand the chart dimension.
+--
+-- - canvasDim: the rectangular dimension of the canvas on which data will be represented. At times appending a hud element will cause the canvas dimension to shift.
+--
+-- - dataDim: the rectangular dimension of the data being represented. Adding hud elements can cause this to change.
+data ChartDims a = ChartDims
+  { chartDim :: Rect a,
+    canvasDim :: Rect a,
+    dataDim :: Rect a
+  }
+  deriving (Eq, Show, Generic)
+
+-- | Hud monad transformer
+newtype HudT m a = Hud {unhud :: [Chart a] -> StateT (ChartDims a) m [Chart a]}
+
+-- | Heads-Up-Display for a 'Chart'
+type Hud = HudT Identity
+
+instance (Monad m) => Semigroup (HudT m a) where
+  (<>) (Hud h1) (Hud h2) = Hud $ h1 >=> h2
+
+instance (Monad m) => Monoid (HudT m a) where
+  mempty = Hud pure
+
+-- | run two hud's simultaneously (using the same original ChartDims state) rather than sequentially (which is the <> operation).
+simulHud :: (Ord a, Monad m) => HudT m a -> HudT m a -> HudT m a
+simulHud (Hud fa) (Hud fb) = Hud $ \cs -> do
+  s <- get
+  (cs', ChartDims ch ca d) <- lift $ runStateT (fa cs) s
+  (cs'', ChartDims ch' ca' d') <- lift $ runStateT (fb cs') s
+  put (ChartDims (ch <> ch') (ca <> ca') (d <> d'))
+  pure cs''
+
+-- | Project the chart data given the ChartAspect
+chartAspectHud :: (Monad m) => ChartAspect -> HudT m Double
+chartAspectHud fa = Hud $ \cs -> do
+  canvasd <- use #canvasDim
+  chartd <- use #chartDim
+  case fa of
+    FixedAspect a -> pure $ projectXYs (aspect a) cs
+    CanvasAspect a ->
+      pure $
+        projectXYs (aspect (a * ratio canvasd / ratio chartd)) cs
+    ChartAspect -> pure $ projectXYs (aspect $ ratio chartd) cs
+    UnadjustedAspect -> pure cs
+
+-- | Combine huds and charts to form a new Chart using the supplied initial canvas and data dimensions. Note that chart data is transformed by this computation (and the use of a linear type is an open question).
+runHudWith ::
+  -- | initial canvas dimension
+  Rect Double ->
+  -- | initial data dimension
+  Rect Double ->
+  -- | huds to add
+  [Hud Double] ->
+  -- | underlying chart
+  [Chart Double] ->
+  -- | integrated chart list
+  [Chart Double]
+runHudWith ca xs hs cs =
+  evalState
+    ((unhud $ mconcat hs) cs')
+    (ChartDims ca' da' xs)
+  where
+    da' = fromMaybe one $ dataBoxes cs'
+    ca' = fromMaybe one $ styleBoxes cs'
+    cs' = projectXYsWith ca xs cs
+
+-- | Combine huds and charts to form a new [Chart] using the supplied canvas and the actual data dimension.
+--
+-- Note that the original chart data are transformed and irrevocably lost by this computation.
+runHud ::
+  -- | initial canvas dimension
+  Rect Double ->
+  -- | huds
+  [Hud Double] ->
+  -- | underlying charts
+  [Chart Double] ->
+  -- | integrated chart list
+  [Chart Double]
+runHud ca hs cs = runHudWith ca (padBox $ dataBoxes cs) hs cs
+
+-- | Typical configurable hud elements. Anything else can be hand-coded as a 'HudT'.
+--
+-- ![hud example](other/hudoptions.svg)
+data HudOptions = HudOptions
+  { hudCanvas :: Maybe RectStyle,
+    hudTitles :: [Title],
+    hudAxes :: [AxisOptions],
+    hudLegend :: Maybe (LegendOptions, [(Annotation, Text)])
+  }
+  deriving (Eq, Show, Generic)
+
+instance Semigroup HudOptions where
+  (<>) (HudOptions c t a l) (HudOptions c' t' a' l') =
+    HudOptions (listToMaybe $ catMaybes [c, c']) (t <> t') (a <> a') (listToMaybe $ catMaybes [l, l'])
+
+instance Monoid HudOptions where
+  mempty = HudOptions Nothing [] [] Nothing
+
+-- | The official hud options.
+defaultHudOptions :: HudOptions
+defaultHudOptions =
+  HudOptions
+    (Just defaultCanvas)
+    []
+    [ defaultAxisOptions,
+      defaultAxisOptions & #place .~ PlaceLeft
+    ]
+    Nothing
+
+-- | The official hud canvas
+defaultCanvas :: RectStyle
+defaultCanvas = blob (fromRGB (grayscale 0.5) 0.025)
+
+-- | Placement of elements around (what is implicity but maybe shouldn't just be) a rectangular canvas
+data Place
+  = PlaceLeft
+  | PlaceRight
+  | PlaceTop
+  | PlaceBottom
+  | PlaceAbsolute (Point Double)
+  deriving (Show, Eq, Generic)
+
+-- | textifier
+placeText :: Place -> Text
+placeText p =
+  case p of
+    PlaceTop -> "Top"
+    PlaceBottom -> "Bottom"
+    PlaceLeft -> "Left"
+    PlaceRight -> "Right"
+    PlaceAbsolute _ -> "Absolute"
+
+-- | axis options
+data AxisOptions = AxisOptions
+  { axisBar :: Maybe AxisBar,
+    adjust :: Maybe Adjustments,
+    axisTick :: Tick,
+    place :: Place
+  }
+  deriving (Eq, Show, Generic)
+
+-- | The official axis
+defaultAxisOptions :: AxisOptions
+defaultAxisOptions = AxisOptions (Just defaultAxisBar) (Just defaultAdjustments) defaultTick PlaceBottom
+
+-- | The bar on an axis representing the x or y plane.
+--
+-- >>> defaultAxisBar
+-- AxisBar {rstyle = RectStyle {borderSize = 0.0, borderColor = RGBA 0.50 0.50 0.50 1.00, color = RGBA 0.50 0.50 0.50 1.00}, wid = 5.0e-3, buff = 1.0e-2}
+data AxisBar = AxisBar
+  { rstyle :: RectStyle,
+    wid :: Double,
+    buff :: Double
+  }
+  deriving (Show, Eq, Generic)
+
+-- | The official axis bar
+defaultAxisBar :: AxisBar
+defaultAxisBar = AxisBar (RectStyle 0 (fromRGB (grayscale 0.5) 1) (fromRGB (grayscale 0.5) 1)) 0.005 0.01
+
+-- | Options for titles.  Defaults to center aligned, and placed at Top of the hud
+--
+-- >>> defaultTitle "title"
+-- Title {text = "title", style = TextStyle {size = 0.12, color = RGBA 0.20 0.20 0.20 1.00, anchor = AnchorMiddle, hsize = 0.5, vsize = 1.45, nudge1 = -0.2, rotation = Nothing, translate = Nothing}, place = PlaceTop, anchor = AnchorMiddle, buff = 4.0e-2}
+data Title = Title
+  { text :: Text,
+    style :: TextStyle,
+    place :: Place,
+    anchor :: Anchor,
+    buff :: Double
+  }
+  deriving (Show, Eq, Generic)
+
+-- | The official hud title
+defaultTitle :: Text -> Title
+defaultTitle txt =
+  Title
+    txt
+    ( (#size .~ 0.12)
+        . (#color .~ colorText)
+        $ defaultTextStyle
+    )
+    PlaceTop
+    AnchorMiddle
+    0.04
+
+-- | xy coordinate markings
+--
+-- >>> defaultTick
+-- Tick {tstyle = TickRound (FormatComma (Just 2)) 8 TickExtend, gtick = Just (GlyphStyle {size = 3.0e-2, color = RGBA 0.50 0.50 0.50 1.00, borderColor = RGBA 0.50 0.50 0.50 1.00, borderSize = 5.0e-3, shape = VLineGlyph 5.0e-3, rotation = Nothing, translate = Nothing},1.25e-2), ttick = Just (TextStyle {size = 5.0e-2, color = RGBA 0.50 0.50 0.50 1.00, anchor = AnchorMiddle, hsize = 0.5, vsize = 1.45, nudge1 = -0.2, rotation = Nothing, translate = Nothing},1.5e-2), ltick = Just (LineStyle {width = 5.0e-3, color = RGBA 0.50 0.50 0.50 0.05, linecap = Nothing, linejoin = Nothing, dasharray = Nothing, dashoffset = Nothing},0.0)}
+data Tick = Tick
+  { tstyle :: TickStyle,
+    gtick :: Maybe (GlyphStyle, Double),
+    ttick :: Maybe (TextStyle, Double),
+    ltick :: Maybe (LineStyle, Double)
+  }
+  deriving (Show, Eq, Generic)
+
+-- | The official glyph tick
+defaultGlyphTick :: GlyphStyle
+defaultGlyphTick =
+  defaultGlyphStyle
+    & #borderSize .~ 0.005
+    & #borderColor .~ fromRGB (grayscale 0.5) 1
+    & #color .~ fromRGB (grayscale 0.5) 1
+    & #shape .~ VLineGlyph 0.005
+
+-- | The official text tick
+defaultTextTick :: TextStyle
+defaultTextTick =
+  defaultTextStyle & #size .~ 0.05 & #color .~ fromRGB (grayscale 0.5) 1
+
+-- | The official line tick
+defaultLineTick :: LineStyle
+defaultLineTick =
+  defaultLineStyle
+    & #color .~ fromRGB (grayscale 0.5) 0.05
+    & #width .~ 5.0e-3
+
+-- | The official tick
+defaultTick :: Tick
+defaultTick =
+  Tick
+    defaultTickStyle
+    (Just (defaultGlyphTick, 0.0125))
+    (Just (defaultTextTick, 0.015))
+    (Just (defaultLineTick, 0))
+
+-- | Style of tick marks on an axis.
+data TickStyle
+  = -- | no ticks on axis
+    TickNone
+  | -- | specific labels (equidistant placement)
+    TickLabels [Text]
+  | -- | sensibly rounded ticks, a guide to how many, and whether to extend beyond the data bounding box
+    TickRound FormatN Int TickExtend
+  | -- | exactly n equally spaced ticks
+    TickExact FormatN Int
+  | -- | specific labels and placement
+    TickPlaced [(Double, Text)]
+  deriving (Show, Eq, Generic)
+
+-- | The official tick style
+defaultTickStyle :: TickStyle
+defaultTickStyle = TickRound (FormatComma (Just 2)) 8 TickExtend
+
+-- | textifier
+tickStyleText :: TickStyle -> Text
+tickStyleText TickNone = "TickNone"
+tickStyleText TickLabels {} = "TickLabels"
+tickStyleText TickRound {} = "TickRound"
+tickStyleText TickExact {} = "TickExact"
+tickStyleText TickPlaced {} = "TickPlaced"
+
+-- | Whether Ticks are allowed to extend the data range
+data TickExtend = TickExtend | NoTickExtend deriving (Eq, Show, Generic)
+
+-- | options for prettifying axis decorations
+--
+-- >>> defaultAdjustments
+-- Adjustments {maxXRatio = 8.0e-2, maxYRatio = 6.0e-2, angledRatio = 0.12, allowDiagonal = True}
+data Adjustments = Adjustments
+  { maxXRatio :: Double,
+    maxYRatio :: Double,
+    angledRatio :: Double,
+    allowDiagonal :: Bool
+  }
+  deriving (Show, Eq, Generic)
+
+-- | The official hud adjustments.
+defaultAdjustments :: Adjustments
+defaultAdjustments = Adjustments 0.08 0.06 0.12 True
+
+-- | Legend options
+--
+-- >>> defaultLegendOptions
+-- LegendOptions {lsize = 0.1, vgap = 0.2, hgap = 0.1, ltext = TextStyle {size = 8.0e-2, color = RGBA 0.20 0.20 0.20 1.00, anchor = AnchorMiddle, hsize = 0.5, vsize = 1.45, nudge1 = -0.2, rotation = Nothing, translate = Nothing}, lmax = 10, innerPad = 0.1, outerPad = 0.1, legendFrame = Just (RectStyle {borderSize = 2.0e-2, borderColor = RGBA 0.50 0.50 0.50 1.00, color = RGBA 1.00 1.00 1.00 1.00}), lplace = PlaceBottom, lscale = 0.2}
+--
+-- ![legend example](other/legend.svg)
+data LegendOptions = LegendOptions
+  { lsize :: Double,
+    vgap :: Double,
+    hgap :: Double,
+    ltext :: TextStyle,
+    lmax :: Int,
+    innerPad :: Double,
+    outerPad :: Double,
+    legendFrame :: Maybe RectStyle,
+    lplace :: Place,
+    lscale :: Double
+  }
+  deriving (Show, Eq, Generic)
+
+-- | The official legend options
+defaultLegendOptions :: LegendOptions
+defaultLegendOptions =
+  LegendOptions
+    0.1
+    0.2
+    0.1
+    ( defaultTextStyle
+        & #size .~ 0.08
+    )
+    10
+    0.1
+    0.1
+    (Just (RectStyle 0.02 (fromRGB (grayscale 0.5) 1) white))
+    PlaceBottom
+    0.2
+
+-- | Generically scale an Annotation.
+scaleAnn :: Double -> Annotation -> Annotation
+scaleAnn x (LineA a) = LineA $ a & #width %~ (* x)
+scaleAnn x (RectA a) = RectA $ a & #borderSize %~ (* x)
+scaleAnn x (TextA a txs) = TextA (a & #size %~ (* x)) txs
+scaleAnn x (GlyphA a) = GlyphA (a & #size %~ (* x))
+scaleAnn x (PathA a pxs) = PathA (a & #borderSize %~ (* x)) pxs
+scaleAnn _ BlankA = BlankA
+
+-- | Translate the data in a chart.
+moveChart :: (Additive a) => XY a -> [Chart a] -> [Chart a]
+moveChart sp = fmap (#xys %~ fmap (sp +))
+
+-- | Make huds from a HudOptions.
+--
+-- Some huds, such as the creation of tick values, can extend the data dimension of a chart, so we return a blank chart with the new data dimension.
+-- The complexity internally to this function is due to the creation of ticks and, specifically, 'gridSensible', which is not idempotent. As a result, a tick calculation that does extends the data area, can then lead to new tick values when applying TickRound etc.
+makeHud :: Rect Double -> HudOptions -> ([Hud Double], [Chart Double])
+makeHud xs cfg =
+  ([axes] <> can <> titles <> l, xsext)
+  where
+    xs' = padBox (Just xs)
+    can = maybe [] (\x -> [canvas x]) (cfg ^. #hudCanvas)
+    titles = title <$> (cfg ^. #hudTitles)
+    ticks =
+      (\a -> freezeTicks (a ^. #place) xs' (a ^. #axisTick . #tstyle))
+        <$> (cfg ^. #hudAxes)
+    hudaxes =
+      zipWith
+        (\c t -> c & #axisTick . #tstyle .~ fst t)
+        (cfg ^. #hudAxes)
+        ticks
+    tickRects = catMaybes (snd <$> ticks)
+    xsext = bool [Chart BlankA (RectXY <$> tickRects)] [] (tickRects == [])
+    axes =
+      foldr simulHud mempty $
+        ( \x ->
+            maybe mempty (makeAxisBar (x ^. #place)) (x ^. #axisBar)
+              <> makeTick x
+        )
+          <$> hudaxes
+    l =
+      maybe
+        []
+        (\(lo, ats) -> [legendHud lo (legendChart ats lo)])
+        (cfg ^. #hudLegend)
+
+-- | convert TickRound to TickPlaced
+freezeTicks :: Place -> Rect Double -> TickStyle -> (TickStyle, Maybe (Rect Double))
+freezeTicks pl xs' ts@TickRound {} = maybe (ts, Nothing) (\x -> (TickPlaced (zip ps ls), Just x)) ((\x -> replaceRange pl x xs') <$> ext)
+  where
+    (TickComponents ps ls ext) = makeTicks ts (placeRange pl xs')
+    replaceRange :: Place -> Range Double -> Rect Double -> Rect Double
+    replaceRange pl' (Range a0 a1) (Rect x z y w) = case pl' of
+      PlaceRight -> Rect x z a0 a1
+      PlaceLeft -> Rect x z a0 a1
+      _ -> Rect a0 a1 y w
+freezeTicks _ _ ts = (ts, Nothing)
+
+-- | flip an axis from being an X dimension to a Y one or vice-versa.
+flipAxis :: AxisOptions -> AxisOptions
+flipAxis ac = case ac ^. #place of
+  PlaceBottom -> ac & #place .~ PlaceLeft
+  PlaceTop -> ac & #place .~ PlaceRight
+  PlaceLeft -> ac & #place .~ PlaceBottom
+  PlaceRight -> ac & #place .~ PlaceTop
+  PlaceAbsolute _ -> ac
+
+addToRect :: (Ord a) => Rect a -> Maybe (Rect a) -> Rect a
+addToRect r r' = sconcat $ r :| maybeToList r'
+
+-- | Make a canvas hud element.
+canvas :: (Monad m) => RectStyle -> HudT m Double
+canvas s = Hud $ \cs -> do
+  a <- use #canvasDim
+  let c = Chart (RectA s) [RectXY a]
+  #canvasDim .= addToRect a (styleBox c)
+  pure $ c : cs
+
+axisBar_ :: Place -> AxisBar -> Rect Double -> Rect Double -> Chart Double
+axisBar_ pl b (Rect x z y w) (Rect x' z' y' w') =
+  case pl of
+    PlaceTop ->
+      Chart
+        (RectA (rstyle b))
+        [ R
+            x
+            z
+            (w' + b ^. #buff)
+            (w' + b ^. #buff + b ^. #wid)
+        ]
+    PlaceBottom ->
+      Chart
+        (RectA (rstyle b))
+        [ R
+            x
+            z
+            (y' - b ^. #wid - b ^. #buff)
+            (y' - b ^. #buff)
+        ]
+    PlaceLeft ->
+      Chart
+        (RectA (rstyle b))
+        [ R
+            (x' - b ^. #wid - b ^. #buff)
+            (x' - b ^. #buff)
+            y
+            w
+        ]
+    PlaceRight ->
+      Chart
+        (RectA (rstyle b))
+        [ R
+            (z' + (b ^. #buff))
+            (z' + (b ^. #buff) + (b ^. #wid))
+            y
+            w
+        ]
+    PlaceAbsolute (Point x'' _) ->
+      Chart
+        (RectA (rstyle b))
+        [ R
+            (x'' + (b ^. #buff))
+            (x'' + (b ^. #buff) + (b ^. #wid))
+            y
+            w
+        ]
+
+makeAxisBar :: (Monad m) => Place -> AxisBar -> HudT m Double
+makeAxisBar pl b = Hud $ \cs -> do
+  da <- use #chartDim
+  ca <- use #canvasDim
+  let c = axisBar_ pl b ca da
+  #chartDim .= addChartBox c da
+  pure $ c : cs
+
+title_ :: Title -> Rect Double -> Chart Double
+title_ t a =
+  Chart
+    ( TextA
+        ( style'
+            & #translate ?~ (placePos' a + alignPos a)
+            & #rotation ?~ rot
+        )
+        [t ^. #text]
+    )
+    [zero]
+  where
+    style'
+      | t ^. #anchor == AnchorStart =
+        #anchor .~ AnchorStart $ t ^. #style
+      | t ^. #anchor == AnchorEnd =
+        #anchor .~ AnchorEnd $ t ^. #style
+      | otherwise = t ^. #style
+    rot
+      | t ^. #place == PlaceRight = pi / 2
+      | t ^. #place == PlaceLeft = - pi / 2
+      | otherwise = 0
+    placePos' (Rect x z y w) = case t ^. #place of
+      PlaceTop -> Point ((x + z) / 2.0) (w + (t ^. #buff))
+      PlaceBottom ->
+        Point
+          ((x + z) / 2.0)
+          ( y - (t ^. #buff)
+              - 0.5
+              * (t ^. #style . #vsize)
+              * (t ^. #style . #size)
+          )
+      PlaceLeft -> Point (x - (t ^. #buff)) ((y + w) / 2.0)
+      PlaceRight -> Point (z + (t ^. #buff)) ((y + w) / 2.0)
+      PlaceAbsolute p -> p
+    alignPos (Rect x z y w)
+      | t ^. #anchor == AnchorStart
+          && t ^. #place `elem` [PlaceTop, PlaceBottom] =
+        Point ((x - z) / 2.0) 0.0
+      | t ^. #anchor == AnchorStart
+          && t ^. #place == PlaceLeft =
+        Point 0.0 ((y - w) / 2.0)
+      | t ^. #anchor == AnchorStart
+          && t ^. #place == PlaceRight =
+        Point 0.0 ((w - y) / 2.0)
+      | t ^. #anchor == AnchorEnd
+          && t ^. #place `elem` [PlaceTop, PlaceBottom] =
+        Point ((- x + z) / 2.0) 0.0
+      | t ^. #anchor == AnchorEnd
+          && t ^. #place == PlaceLeft =
+        Point 0.0 ((- y + w) / 2.0)
+      | t ^. #anchor == AnchorEnd
+          && t ^. #place == PlaceRight =
+        Point 0.0 ((y - w) / 2.0)
+      | otherwise = Point 0.0 0.0
+
+-- | Add a title to a chart. The logic used to work out placement is flawed due to being able to freely specify text rotation.  It works for specific rotations (Top, Bottom at 0, Left at 90, Right @ 270)
+title :: (Monad m) => Title -> HudT m Double
+title t = Hud $ \cs -> do
+  ca <- use #chartDim
+  let c = title_ t ca
+  #chartDim .= addChartBox c ca
+  pure $ c : cs
+
+placePos :: Place -> Double -> Rect Double -> Point Double
+placePos pl b (Rect x z y w) = case pl of
+  PlaceTop -> Point 0 (w + b)
+  PlaceBottom -> Point 0 (y - b)
+  PlaceLeft -> Point (x - b) 0
+  PlaceRight -> Point (z + b) 0
+  PlaceAbsolute p -> p
+
+placeRot :: Place -> Maybe Double
+placeRot pl = case pl of
+  PlaceRight -> Just (pi / 2)
+  PlaceLeft -> Just (pi / 2)
+  _ -> Nothing
+
+textPos :: Place -> TextStyle -> Double -> Point Double
+textPos pl tt b = case pl of
+  PlaceTop -> Point 0 b
+  PlaceBottom -> Point 0 (- b - 0.5 * (tt ^. #vsize) * (tt ^. #size))
+  PlaceLeft ->
+    Point
+      (- b)
+      ((tt ^. #nudge1) * (tt ^. #vsize) * (tt ^. #size))
+  PlaceRight ->
+    Point
+      b
+      ((tt ^. #nudge1) * (tt ^. #vsize) * (tt ^. #size))
+  PlaceAbsolute p -> p
+
+placeRange :: Place -> Rect Double -> Range Double
+placeRange pl (Rect x z y w) = case pl of
+  PlaceRight -> Range y w
+  PlaceLeft -> Range y w
+  _ -> Range x z
+
+placeOrigin :: Place -> Double -> Point Double
+placeOrigin pl x
+  | pl `elem` [PlaceTop, PlaceBottom] = Point x 0
+  | otherwise = Point 0 x
+
+placeTextAnchor :: Place -> (TextStyle -> TextStyle)
+placeTextAnchor pl
+  | pl == PlaceLeft = #anchor .~ AnchorEnd
+  | pl == PlaceRight = #anchor .~ AnchorStart
+  | otherwise = id
+
+placeGridLines :: Place -> Rect Double -> Double -> Double -> [XY Double]
+placeGridLines pl (Rect x z y w) a b
+  | pl `elem` [PlaceTop, PlaceBottom] = [P a (y - b), P a (w + b)]
+  | otherwise = [P (x - b) a, P (z + b) a]
+
+-- | compute tick values and labels given options, ranges and formatting
+ticksR :: TickStyle -> Range Double -> Range Double -> [(Double, Text)]
+ticksR s d r =
+  case s of
+    TickNone -> []
+    TickRound f n e -> zip (project r d <$> ticks0) (formatNs f ticks0)
+      where
+        ticks0 = gridSensible OuterPos (e == NoTickExtend) r (fromIntegral n :: Integer)
+    TickExact f n -> zip (project r d <$> ticks0) (formatNs f ticks0)
+      where
+        ticks0 = grid OuterPos r n
+    TickLabels ls ->
+      zip
+        ( project (Range 0 (fromIntegral $ length ls)) d
+            <$> ((\x -> x - 0.5) . fromIntegral <$> [1 .. length ls])
+        )
+        ls
+    TickPlaced xs -> zip (project r d . fst <$> xs) (snd <$> xs)
+
+data TickComponents = TickComponents
+  { positions :: [Double],
+    labels :: [Text],
+    extension :: Maybe (Range Double)
+  }
+  deriving (Eq, Show, Generic)
+
+-- | compute tick components given style, ranges and formatting
+makeTicks :: TickStyle -> Range Double -> TickComponents
+makeTicks s r =
+  case s of
+    TickNone -> TickComponents [] [] Nothing
+    TickRound f n e ->
+      TickComponents
+        ticks0
+        (formatNs f ticks0)
+        (bool (Just $ space1 ticks0) Nothing (e == NoTickExtend))
+      where
+        ticks0 = gridSensible OuterPos (e == NoTickExtend) r (fromIntegral n :: Integer)
+    TickExact f n -> TickComponents ticks0 (formatNs f ticks0) Nothing
+      where
+        ticks0 = grid OuterPos r n
+    TickLabels ls ->
+      TickComponents
+        ( project (Range 0 (fromIntegral $ length ls)) r
+            <$> ((\x -> x - 0.5) . fromIntegral <$> [1 .. length ls])
+        )
+        ls
+        Nothing
+    TickPlaced xs -> TickComponents (fst <$> xs) (snd <$> xs) Nothing
+
+-- | compute tick values given placement, canvas dimension & data range
+ticksPlaced :: TickStyle -> Place -> Rect Double -> Rect Double -> TickComponents
+ticksPlaced ts pl d xs = TickComponents (project (placeRange pl xs) (placeRange pl d) <$> ps) ls ext
+  where
+    (TickComponents ps ls ext) = makeTicks ts (placeRange pl xs)
+
+tickGlyph_ :: Place -> (GlyphStyle, Double) -> TickStyle -> Rect Double -> Rect Double -> Rect Double -> Chart Double
+tickGlyph_ pl (g, b) ts ca da xs =
+  Chart
+    (GlyphA (g & #rotation .~ placeRot pl))
+    ( PointXY . (placePos pl b ca +) . placeOrigin pl
+        <$> positions
+          (ticksPlaced ts pl da xs)
+    )
+
+-- | aka marks
+tickGlyph ::
+  (Monad m) =>
+  Place ->
+  (GlyphStyle, Double) ->
+  TickStyle ->
+  HudT m Double
+tickGlyph pl (g, b) ts = Hud $ \cs -> do
+  a <- use #chartDim
+  d <- use #canvasDim
+  xs <- use #dataDim
+  let c = tickGlyph_ pl (g, b) ts a d xs
+  #chartDim .= addToRect a (styleBox c)
+  pure $ c : cs
+
+tickText_ ::
+  Place ->
+  (TextStyle, Double) ->
+  TickStyle ->
+  Rect Double ->
+  Rect Double ->
+  Rect Double ->
+  [Chart Double]
+tickText_ pl (txts, b) ts ca da xs =
+  zipWith
+    ( \txt sp ->
+        Chart
+          ( TextA
+              (placeTextAnchor pl txts)
+              [txt]
+          )
+          [PointXY sp]
+    )
+    (labels $ ticksPlaced ts pl da xs)
+    ( (placePos pl b ca + textPos pl txts b +) . placeOrigin pl
+        <$> positions (ticksPlaced ts pl da xs)
+    )
+
+-- | aka tick labels
+tickText ::
+  (Monad m) =>
+  Place ->
+  (TextStyle, Double) ->
+  TickStyle ->
+  HudT m Double
+tickText pl (txts, b) ts = Hud $ \cs -> do
+  ca <- use #chartDim
+  da <- use #canvasDim
+  xs <- use #dataDim
+  let c = tickText_ pl (txts, b) ts ca da xs
+  #chartDim .= addChartBoxes c ca
+  pure $ c <> cs
+
+-- | aka grid lines
+tickLine ::
+  (Monad m) =>
+  Place ->
+  (LineStyle, Double) ->
+  TickStyle ->
+  HudT m Double
+tickLine pl (ls, b) ts = Hud $ \cs -> do
+  da <- use #canvasDim
+  xs <- use #dataDim
+  let c =
+        Chart (LineA ls) . (\x -> placeGridLines pl da x b)
+          <$> positions (ticksPlaced ts pl da xs)
+  #chartDim %= addChartBoxes c
+  pure $ c <> cs
+
+-- | Create tick glyphs (marks), lines (grid) and text (labels)
+tick ::
+  (Monad m) =>
+  Place ->
+  Tick ->
+  HudT m Double
+tick pl t =
+  maybe mempty (\x -> tickGlyph pl x (t ^. #tstyle)) (t ^. #gtick)
+    <> maybe mempty (\x -> tickText pl x (t ^. #tstyle)) (t ^. #ttick)
+    <> maybe mempty (\x -> tickLine pl x (t ^. #tstyle)) (t ^. #ltick)
+    <> extendData pl t
+
+-- | compute an extension to the Range if a tick went over the data bounding box
+computeTickExtension :: TickStyle -> Range Double -> Maybe (Range Double)
+computeTickExtension s r =
+  case s of
+    TickNone -> Nothing
+    TickRound _ n e -> bool Nothing (Just (space1 ticks0 <> r)) (e == TickExtend)
+      where
+        ticks0 = gridSensible OuterPos (e == NoTickExtend) r (fromIntegral n :: Integer)
+    TickExact _ _ -> Nothing
+    TickLabels _ -> Nothing
+    TickPlaced xs -> Just $ r <> space1 (fst <$> xs)
+
+-- | Create a style extension for the data, if ticks extend beyond the existing range
+tickExtended ::
+  Place ->
+  Tick ->
+  Rect Double ->
+  Rect Double
+tickExtended pl t xs =
+  maybe
+    xs
+    (rangeext xs)
+    (computeTickExtension (t ^. #tstyle) (ranged xs))
+  where
+    ranged xs' = case pl of
+      PlaceTop -> rangex xs'
+      PlaceBottom -> rangex xs'
+      PlaceLeft -> rangey xs'
+      PlaceRight -> rangey xs'
+      PlaceAbsolute _ -> rangex xs'
+    rangex (Rect x z _ _) = Range x z
+    rangey (Rect _ _ y w) = Range y w
+    rangeext (Rect x z y w) (Range a0 a1) = case pl of
+      PlaceTop -> Rect a0 a1 y w
+      PlaceBottom -> Rect a0 a1 y w
+      PlaceLeft -> Rect x z a0 a1
+      PlaceRight -> Rect x z a0 a1
+      PlaceAbsolute _ -> Rect a0 a1 y w
+
+extendData :: (Monad m) => Place -> Tick -> HudT m Double
+extendData pl t = Hud $ \cs -> do
+  #dataDim %= tickExtended pl t
+  pure cs
+
+-- | adjust Tick for sane font sizes etc
+adjustTick ::
+  Adjustments ->
+  Rect Double ->
+  Rect Double ->
+  Place ->
+  Tick ->
+  Tick
+adjustTick (Adjustments mrx ma mry ad) vb cs pl t
+  | pl `elem` [PlaceBottom, PlaceTop] =
+    if ad
+      then
+        ( case adjustSizeX > 1 of
+            True ->
+              ( case pl of
+                  PlaceBottom -> #ttick . _Just . _1 . #anchor .~ AnchorEnd
+                  PlaceTop -> #ttick . _Just . _1 . #anchor .~ AnchorStart
+                  _ -> #ttick . _Just . _1 . #anchor .~ AnchorEnd
+              )
+                . (#ttick . _Just . _1 . #size %~ (/ adjustSizeA))
+                $ (#ttick . _Just . _1 . #rotation ?~ pi / 4) t
+            False -> (#ttick . _Just . _1 . #size %~ (/ adjustSizeA)) t
+        )
+      else t & #ttick . _Just . _1 . #size %~ (/ adjustSizeX)
+  | otherwise -- pl `elem` [PlaceLeft, PlaceRight]
+    =
+    (#ttick . _Just . _1 . #size %~ (/ adjustSizeY)) t
+  where
+    max' [] = 1
+    max' xs = maximum xs
+    ra (Rect x z y w)
+      | pl `elem` [PlaceTop, PlaceBottom] = Range x z
+      | otherwise = Range y w
+    asp = ra vb
+    r = ra cs
+    tickl = snd <$> ticksR (t ^. #tstyle) asp r
+    maxWidth :: Double
+    maxWidth =
+      maybe
+        1
+        ( \tt ->
+            max' $
+              (\(Rect x z _ _) -> z - x)
+                . (\x -> styleBoxText (fst tt) x (Point 0 0))
+                <$> tickl
+        )
+        (t ^. #ttick)
+    maxHeight =
+      maybe
+        1
+        ( \tt ->
+            max' $
+              (\(Rect _ _ y w) -> w - y)
+                . (\x -> styleBoxText (fst tt) x (Point 0 0))
+                <$> tickl
+        )
+        (t ^. #ttick)
+    adjustSizeX :: Double
+    adjustSizeX = max' [(maxWidth / (upper asp - lower asp)) / mrx, 1]
+    adjustSizeY = max' [(maxHeight / (upper asp - lower asp)) / mry, 1]
+    adjustSizeA = max' [(maxHeight / (upper asp - lower asp)) / ma, 1]
+
+makeTick :: (Monad m) => AxisOptions -> HudT m Double
+makeTick c = Hud $ \cs -> do
+  vb <- use #chartDim
+  xs <- use #dataDim
+  let adjTick =
+        maybe
+          (c ^. #axisTick)
+          (\x -> adjustTick x vb xs (c ^. #place) (c ^. #axisTick))
+          (c ^. #adjust)
+  unhud (tick (c ^. #place) adjTick) cs
+
+-- | Convert a UTCTime list into sensible ticks, placed exactly
+makeTickDates :: PosDiscontinuous -> Maybe Text -> Int -> [UTCTime] -> [(Int, Text)]
+makeTickDates pc fmt n dates =
+  lastOnes (\(_, x0) (_, x1) -> x0 == x1) . fst $ placedTimeLabelDiscontinuous pc fmt n dates
+  where
+    lastOnes :: (a -> a -> Bool) -> [a] -> [a]
+    lastOnes _ [] = []
+    lastOnes _ [x] = [x]
+    lastOnes f (x : xs) = (\(x0, x1) -> reverse $ x0 : x1) $ foldl' step (x, []) xs
+      where
+        step (a0, rs) a1 = if f a0 a1 then (a1, rs) else (a1, a0 : rs)
+
+-- | Convert a UTCTime list into sensible ticks, placed on the (0,1) space
+makeTickDatesContinuous :: PosDiscontinuous -> Maybe Text -> Int -> [UTCTime] -> [(Double, Text)]
+makeTickDatesContinuous pc fmt n dates =
+  placedTimeLabelContinuous pc fmt n (space1 dates)
+
+-- | Make a legend hud element taking into account the chart.
+legendHud :: LegendOptions -> [Chart Double] -> Hud Double
+legendHud l lcs = Hud $ \cs -> do
+  ca <- use #chartDim
+  let cs' = cs <> movedleg ca scaledleg
+  #chartDim .= fromMaybe one (styleBoxes cs')
+  pure cs'
+  where
+    scaledleg =
+      (#annotation %~ scaleAnn (l ^. #lscale))
+        . (#xys %~ fmap (fmap (* l ^. #lscale)))
+        <$> lcs
+    movedleg ca' leg =
+      maybe id (moveChart . PointXY . placel (l ^. #lplace) ca') (styleBoxes leg) leg
+    placel pl (Rect x z y w) (Rect x' z' y' w') =
+      case pl of
+        PlaceTop -> Point ((x + z) / 2.0) (w + (w' - y') / 2.0)
+        PlaceBottom -> Point ((x + z) / 2.0) (y - (w' - y' / 2.0))
+        PlaceLeft -> Point (x - (z' - x') / 2.0) ((y + w) / 2.0)
+        PlaceRight -> Point (z + (z' - x') / 2.0) ((y + w) / 2.0)
+        PlaceAbsolute p -> p
+
+legendEntry ::
+  LegendOptions ->
+  Annotation ->
+  Text ->
+  (Chart Double, Chart Double)
+legendEntry l a t =
+  ( Chart ann sps,
+    Chart (TextA (l ^. #ltext & #anchor .~ AnchorStart) [t]) [zero]
+  )
+  where
+    (ann, sps) = case a of
+      RectA rs ->
+        ( RectA rs,
+          [R 0 (l ^. #lsize) 0 (l ^. #lsize)]
+        )
+      TextA ts txts ->
+        ( TextA (ts & #size .~ (l ^. #lsize)) (take 1 txts),
+          [zero]
+        )
+      GlyphA gs ->
+        ( GlyphA (gs & #size .~ (l ^. #lsize)),
+          [P (0.5 * l ^. #lsize) (0.33 * l ^. #lsize)]
+        )
+      LineA ls ->
+        ( LineA (ls & #width %~ (/ (l ^. #lscale))),
+          [P 0 (0.33 * l ^. #lsize), P (2 * l ^. #lsize) (0.33 * l ^. #lsize)]
+        )
+      PathA ps _ ->
+        ( let cs =
+                singletonCubic
+                  ( CubicPosition
+                      (Point 0 0)
+                      (Point (0.33 * l ^. #lsize) (0.33 * l ^. #lsize))
+                      (Point 0 (0.33 * l ^. #lsize))
+                      (Point (0.33 * l ^. #lsize) 0)
+                  )
+           in (PathA (ps & #borderSize .~ (l ^. #lsize)) (fst <$> cs), PointXY . snd <$> cs)
+        )
+      BlankA ->
+        ( BlankA,
+          [zero]
+        )
+
+legendChart :: [(Annotation, Text)] -> LegendOptions -> [Chart Double]
+legendChart lrs l =
+  padChart (l ^. #outerPad)
+    . maybe id (\x -> frameChart x (l ^. #innerPad)) (l ^. #legendFrame)
+    . vert (l ^. #hgap)
+    $ (\(a, t) -> hori ((l ^. #vgap) + twidth - gapwidth t) [[t], [a]])
+      <$> es
+  where
+    es = reverse $ uncurry (legendEntry l) <$> lrs
+    twidth = maybe 0 (\(Rect _ z _ _) -> z) . foldRect $ catMaybes (styleBox . snd <$> es)
+    gapwidth t = maybe 0 (\(Rect _ z _ _) -> z) (styleBox t)
+
+-- | Project the xys of a chart to a new XY Space.
+--
+-- > projectXYs (dataBox cs) cs == cs if cs is non-empty
+projectXYs :: Rect Double -> [Chart Double] -> [Chart Double]
+projectXYs _ [] = []
+projectXYs new cs = projectXYsWith new old cs
+  where
+    old = fromMaybe one (dataBoxes cs)
+
+-- | Project chart xys to a new XY Space from an old XY Space
+--
+-- The projections needed are:
+--
+-- - project the 'xys'
+--
+-- - project the control points of bezier curves
+--
+-- - project aspect changes only to radii of ellipticals.
+--
+-- > projectXYsWith x x == id
+projectXYsWith :: Rect Double -> Rect Double -> [Chart Double] -> [Chart Double]
+projectXYsWith new old cs = cs'
+  where
+    xss = fmap (projectOn new old) . xys <$> cs
+    ss = projectAnn <$> cs
+    cs' = zipWith Chart ss xss
+    projectAnn (Chart (PathA ps ips) xys) =
+      PathA ps (projectControls ips xys)
+    projectAnn x = annotation x
+
+    projectControls pis xys =
+      (reverse . snd) (foldl' (\(prevp, l) (i, xy) -> (xy, projectControl prevp xy i : l)) (zero, []) (zip pis xys))
+
+    projectControl _ _ (CubicI c1 c2) =
+      CubicI (projectOnP new old c1) (projectOnP new old c2)
+    projectControl _ _ (QuadI c) =
+      QuadI (projectOnP new old c)
+    projectControl p1 p2 (ArcI ai) = ArcI $ projectArcPosition new old (ArcPosition (toPoint p1) (toPoint p2) ai)
+    projectControl _ _ x = x
+
+-- | project an ArcPosition given new and old Rects
+--
+-- The radii of the ellipse can be represented as:
+--
+-- Point rx 0 & Point 0 ry
+--
+-- These two points are firstly rotated by p and then undergo scaling...
+projectArcPosition :: Rect Double -> Rect Double -> ArcPosition Double -> ArcInfo Double
+projectArcPosition new old (ArcPosition _ _ (ArcInfo (Point rx ry) phi l cl)) = ArcInfo (Point rx'' ry'') phi l cl
+  where
+    rx' = rotateP phi (Point rx zero)
+    rx'' = norm $ rx' * NH.width new / NH.width old
+    ry' = rotateP phi (Point zero ry)
+    ry'' = norm $ ry' * NH.width new / NH.width old
+
+-- | pad a Rect to remove singleton dimensions
+padBox :: Maybe (Rect Double) -> Rect Double
+padBox = maybe one singletonUnit
+  where
+    singletonUnit (Rect x z y w)
+      | x == z && y == w = Rect (x - 0.5) (x + 0.5) (y - 0.5) (y + 0.5)
+      | x == z = Rect (x - 0.5) (x + 0.5) y w
+      | y == w = Rect x z (y - 0.5) (y + 0.5)
+      | otherwise = Rect x z y w
+
+-- | 'Rect' of a 'Chart', not including style
+dataBox :: Chart Double -> Maybe (Rect Double)
+dataBox c =
+  case c ^. #annotation of
+    PathA _ path' -> pathBoxes $ zip path' (toPoint <$> c ^. #xys)
+    _ -> foldRect $ fmap toRect (c ^. #xys)
+
+-- | 'Rect' of charts, not including style
+dataBoxes :: [Chart Double] -> Maybe (Rect Double)
+dataBoxes cs = foldRect $ catMaybes $ dataBox <$> cs
+
+-- | 'Rect' of charts, not including style, with defaults for Nothing and singleton dimensions if any.
+dataBoxesS :: [Chart Double] -> Rect Double
+dataBoxesS cs = padBox $ foldRect $ catMaybes $ dataBox <$> cs
+
+-- | the extra area from text styling
+styleBoxText ::
+  TextStyle ->
+  Text ->
+  Point Double ->
+  Rect Double
+styleBoxText o t p = move (p + p') $ maybe flat (`rotationBound` flat) (o ^. #rotation)
+  where
+    flat = Rect ((- x' / 2.0) + x' * a') (x' / 2 + x' * a') ((- y' / 2) - n1') (y' / 2 - n1')
+    s = o ^. #size
+    h = o ^. #hsize
+    v = o ^. #vsize
+    n1 = o ^. #nudge1
+    x' = s * h * fromIntegral (sum $ maybe 0 Text.length . maybeTagText <$> parseTags t)
+    y' = s * v
+    n1' = s * n1
+    a' = case o ^. #anchor of
+      AnchorStart -> 0.5
+      AnchorEnd -> -0.5
+      AnchorMiddle -> 0.0
+    p' = fromMaybe (Point 0.0 0.0) (o ^. #translate)
+
+-- | the extra area from glyph styling
+styleBoxGlyph :: GlyphStyle -> Rect Double
+styleBoxGlyph s = move p' $
+  sw $ case sh of
+    CircleGlyph -> (sz *) <$> one
+    SquareGlyph -> (sz *) <$> one
+    EllipseGlyph a -> NH.scale (Point sz (a * sz)) one
+    RectSharpGlyph a -> NH.scale (Point sz (a * sz)) one
+    RectRoundedGlyph a _ _ -> NH.scale (Point sz (a * sz)) one
+    VLineGlyph _ -> NH.scale (Point ((s ^. #borderSize) * sz) sz) one
+    HLineGlyph _ -> NH.scale (Point sz ((s ^. #borderSize) * sz)) one
+    TriangleGlyph a b c -> (sz *) <$> sconcat (toRect . PointXY <$> (a :| [b, c]) :: NonEmpty (Rect Double))
+    PathGlyph path' -> (sz *) <$> fromMaybe one (pathBoxes . toPathXYs . parsePath $ path')
+  where
+    sh = s ^. #shape
+    sz = s ^. #size
+    sw = padRect (0.5 * s ^. #borderSize)
+    p' = fromMaybe (Point 0.0 0.0) (s ^. #translate)
+
+-- | the geometric dimensions of a Chart inclusive of style geometry, but excluding PathA effects
+styleBox :: Chart Double -> Maybe (Rect Double)
+styleBox (Chart (TextA s ts) xs) = foldRect $ zipWith (\t x -> styleBoxText s t (toPoint x)) ts xs
+styleBox (Chart (GlyphA s) xs) = foldRect $ (\x -> move (toPoint x) (styleBoxGlyph s)) <$> xs
+styleBox (Chart (RectA s) xs) = foldRect (padRect (0.5 * s ^. #borderSize) . toRect <$> xs)
+styleBox (Chart (LineA s) xs) = foldRect (padRect (0.5 * s ^. #width) . toRect <$> xs)
+styleBox c@(Chart (PathA s _) _) = padRect (0.5 * s ^. #borderSize) <$> dataBox c
+styleBox (Chart BlankA xs) = foldRect (toRect <$> xs)
+
+-- | the extra geometric dimensions of a [Chart]
+styleBoxes :: [Chart Double] -> Maybe (Rect Double)
+styleBoxes xss = foldRect $ catMaybes (styleBox <$> xss)
+
+-- | the extra geometric dimensions of a [Chart], adjusted for Nothing or singleton dimensions.
+styleBoxesS :: [Chart Double] -> Rect Double
+styleBoxesS xss = padBox $ foldRect $ catMaybes (styleBox <$> xss)
+
+-- | additively pad a [Chart]
+--
+-- >>> padChart 0.1 [Chart (RectA defaultRectStyle) [RectXY one]]
+-- [Chart {annotation = RectA (RectStyle {borderSize = 1.0e-2, borderColor = RGBA 0.12 0.47 0.71 0.80, color = RGBA 0.12 0.47 0.71 0.30}), xys = [R -0.5 0.5 -0.5 0.5]},Chart {annotation = BlankA, xys = [R -0.605 0.605 -0.605 0.605]}]
+padChart :: Double -> [Chart Double] -> [Chart Double]
+padChart p cs = cs <> [Chart BlankA (maybeToList (RectXY . padRect p <$> styleBoxes cs))]
+
+-- | overlay a frame on some charts with some additive padding between
+--
+-- >>> frameChart defaultRectStyle 0.1 [Chart BlankA []]
+-- [Chart {annotation = RectA (RectStyle {borderSize = 1.0e-2, borderColor = RGBA 0.12 0.47 0.71 0.80, color = RGBA 0.12 0.47 0.71 0.30}), xys = []},Chart {annotation = BlankA, xys = []}]
+frameChart :: RectStyle -> Double -> [Chart Double] -> [Chart Double]
+frameChart rs p cs = [Chart (RectA rs) (maybeToList (RectXY . padRect p <$> styleBoxes cs))] <> cs
+
+-- | horizontally stack a list of list of charts (proceeding to the right) with a gap between
+hori :: Double -> [[Chart Double]] -> [Chart Double]
+hori _ [] = []
+hori gap cs = foldl step [] cs
+  where
+    step x a = x <> (a & fmap (#xys %~ fmap (\s -> P (widthx x) (aligny x - aligny a) + s)))
+    widthx xs = maybe 0 (\(Rect x' z' _ _) -> z' - x' + gap) (styleBoxes xs)
+    aligny xs = maybe 0 (\(Rect _ _ y' _) -> y') (styleBoxes xs)
+
+-- | vertically stack a list of charts (proceeding upwards), aligning them to the left
+vert :: Double -> [[Chart Double]] -> [Chart Double]
+vert _ [] = []
+vert gap cs = foldl step [] cs
+  where
+    step x a = x <> (a & fmap (#xys %~ fmap (\s -> P (alignx x - alignx a) (widthy x) + s)))
+    widthy xs = maybe 0 (\(Rect _ _ y' w') -> w' - y' + gap) (styleBoxes xs)
+    alignx xs = maybe 0 (\(Rect x' _ _ _) -> x') (styleBoxes xs)
+
+-- | stack a list of charts horizontally, then vertically
 stack :: Int -> Double -> [[Chart Double]] -> [Chart Double]
 stack _ _ [] = []
 stack n gap cs = vert gap (hori gap <$> group' cs [])
diff --git a/src/Chart/Various.hs b/src/Chart/Various.hs
new file mode 100644
--- /dev/null
+++ b/src/Chart/Various.hs
@@ -0,0 +1,324 @@
+{-# LANGUAGE OverloadedLabels #-}
+{-# LANGUAGE OverloadedStrings #-}
+{-# LANGUAGE TupleSections #-}
+{-# LANGUAGE NoImplicitPrelude #-}
+{-# OPTIONS_GHC -fno-warn-name-shadowing #-}
+
+-- | Various common chart patterns.
+module Chart.Various
+  ( -- * sub-chart patterns
+    xify,
+    xify',
+    yify,
+    yify',
+    addLineX,
+    addLineY,
+    stdLineChart,
+    stdLines,
+    lineLegend,
+    tsAxes,
+    titlesHud,
+    gpalette,
+    gpaletteStyle,
+    blendMidLineStyles,
+
+    -- * chart patterns
+    quantileChart,
+    digitChart,
+    scatterChart,
+    histChart,
+    quantileHistChart,
+    digitSurfaceChart,
+    tableChart,
+  )
+where
+
+import Chart
+import Control.Lens
+import qualified Data.HashMap.Strict as HashMap
+import Data.List ((!!))
+import Data.Time (UTCTime (..))
+import NumHask.Prelude hiding (fold)
+import NumHask.Space
+
+-- | convert from [a] to [Point a], by adding the index as the x axis
+xify :: [Double] -> [Point Double]
+xify ys =
+  zipWith Point [0 ..] ys
+
+-- | convert from [a] to [XY a], by adding the index as the x axis
+xify' :: [Double] -> [XY Double]
+xify' ys =
+  zipWith P [0 ..] ys
+
+-- | convert from [a] to [Point a], by adding the index as the y axis
+yify :: [Double] -> [Point Double]
+yify xs =
+  zipWith Point xs [0 ..]
+
+-- | convert from [a] to [XY a], by adding the index as the y axis
+yify' :: [Double] -> [XY Double]
+yify' xs =
+  zipWith P xs [0 ..]
+
+-- | add a horizontal line at y
+addLineX :: Double -> LineStyle -> [Chart Double] -> [Chart Double]
+addLineX y ls cs = cs <> [l]
+  where
+    l = Chart (LineA ls) (PointXY <$> [Point lx y, Point ux y])
+    (Rect lx ux _ _) = fromMaybe one $ foldRect $ mconcat $ fmap toRect . xys <$> cs
+
+-- | add a verticle line at x
+addLineY :: Double -> LineStyle -> [Chart Double] -> [Chart Double]
+addLineY x ls cs = cs <> [zeroLine]
+  where
+    zeroLine = Chart (LineA ls) (PointXY <$> [Point x ly, Point x uy])
+    (Rect _ _ ly uy) = fromMaybe one $ foldRect $ mconcat $ fmap toRect . xys <$> cs
+
+-- | interpret a [[Double]] as a series of lines with x coordinates of [0..]
+stdLineChart :: Double -> [Colour] -> [[Double]] -> [Chart Double]
+stdLineChart w p xss =
+  zipWith
+    ( \c xs ->
+        Chart
+          (LineA (defaultLineStyle & #color .~ c & #width .~ w))
+          (xify' xs)
+    )
+    p
+    xss
+
+-- | Can of the main palette
+stdLines :: Double -> [LineStyle]
+stdLines w = (\c -> defaultLineStyle & #color .~ c & #width .~ w) <$> palette1
+
+-- | Legend template for a line chart.
+lineLegend :: Double -> [Text] -> [Colour] -> (LegendOptions, [(Annotation, Text)])
+lineLegend w rs cs =
+  ( defaultLegendOptions
+      & #ltext . #size .~ 0.3
+      & #lplace .~ PlaceBottom
+      & #legendFrame .~ Just (RectStyle 0.02 (palette1 !! 5) white),
+    zipWith
+      (\a r -> (LineA a, r))
+      ((\c -> defaultLineStyle & #color .~ c & #width .~ w) <$> cs)
+      rs
+  )
+
+-- | Create a hud that has time as the x-axis, based on supplied days, and a rounded yaxis.
+tsAxes :: [UTCTime] -> [AxisOptions]
+tsAxes ds =
+  [ defaultAxisOptions
+      & #axisTick . #tstyle .~ TickRound (FormatPrec (Just 3)) 6 TickExtend
+      & #place .~ PlaceLeft,
+    defaultAxisOptions & #axisTick . #tstyle
+      .~ TickPlaced
+        ( first fromIntegral
+            <$> makeTickDates PosIncludeBoundaries Nothing 8 ds
+        )
+  ]
+
+-- | common pattern of chart title, x-axis title and y-axis title
+titlesHud :: Text -> Text -> Text -> HudOptions
+titlesHud t x y =
+  defaultHudOptions
+    & #hudTitles
+    .~ [ defaultTitle t,
+         defaultTitle x & #place .~ PlaceBottom & #style . #size .~ 0.08,
+         defaultTitle y & #place .~ PlaceLeft & #style . #size .~ 0.08
+       ]
+
+-- | GlyphStyle palette
+gpaletteStyle :: Double -> [GlyphStyle]
+gpaletteStyle s = zipWith (\c g -> defaultGlyphStyle & #size .~ s & #color .~ c & #shape .~ fst g & #borderSize .~ snd g) palette1 gpalette
+
+-- | Glyph palette
+gpalette :: [(GlyphShape, Double)]
+gpalette =
+  [ (CircleGlyph, 0.01 :: Double),
+    (SquareGlyph, 0.01),
+    (RectSharpGlyph 0.75, 0.01),
+    (RectRoundedGlyph 0.75 0.01 0.01, 0.01),
+    (EllipseGlyph 0.75, 0),
+    (VLineGlyph 0.005, 0.01),
+    (HLineGlyph 0.005, 0.01),
+    (TriangleGlyph (Point 0.0 0.0) (Point 1 1) (Point 1 0), 0.01),
+    (PathGlyph "M0.05,-0.03660254037844387 A0.1 0.1 0.0 0 1 0.0,0.05 0.1 0.1 0.0 0 1 -0.05,-0.03660254037844387 0.1 0.1 0.0 0 1 0.05,-0.03660254037844387 Z", 0.01)
+  ]
+
+-- * charts
+
+-- | Chart template for quantiles.
+quantileChart ::
+  Text ->
+  [Text] ->
+  [LineStyle] ->
+  [AxisOptions] ->
+  [[Double]] ->
+  (HudOptions, [Chart Double])
+quantileChart title names ls as xs =
+  (hudOptions, chart')
+  where
+    hudOptions =
+      defaultHudOptions
+        & #hudTitles .~ [defaultTitle title]
+        & ( #hudLegend
+              .~ Just
+                ( defaultLegendOptions
+                    & #ltext . #size .~ 0.1
+                    & #vgap .~ 0.05
+                    & #innerPad .~ 0.2
+                    & #lplace .~ PlaceRight,
+                  extractAnns names chart'
+                )
+          )
+        & #hudAxes .~ as
+    extractAnns = zipWith (\t c -> (c ^. #annotation, t))
+
+    chart' =
+      zipWith
+        (\l c -> Chart (LineA l) c)
+        ls
+        (zipWith P [0 ..] <$> xs)
+
+-- | /blendMidLineStyle n w/ produces n lines of width w interpolated between two colors.
+blendMidLineStyles :: Int -> Double -> (Colour, Colour) -> [LineStyle]
+blendMidLineStyles l w (c1, c2) = lo
+  where
+    m = (fromIntegral l - 1) / 2 :: Double
+    cs = (\x -> 1 - abs (fromIntegral x - m) / m) <$> [0 .. (l - 1)]
+    bs = (\x -> blend x c1 c2) <$> cs
+    lo = (\c -> defaultLineStyle & #width .~ w & #color .~ c) <$> bs
+
+-- | FIXME: better name
+digitChart ::
+  Text ->
+  [UTCTime] ->
+  [Double] ->
+  (HudOptions, [Chart Double])
+digitChart title utcs xs =
+  (hudOptions, [c])
+  where
+    hudOptions =
+      defaultHudOptions
+        & #hudTitles .~ [defaultTitle title]
+        & #hudAxes .~ tsAxes utcs
+    c =
+      Chart
+        ( GlyphA
+            ( defaultGlyphStyle
+                & #color .~ Colour 0 0 1 1
+                & #shape .~ CircleGlyph
+                & #size .~ 0.01
+            )
+        )
+        (xify' xs)
+
+-- | scatter chart
+scatterChart ::
+  [[Point Double]] ->
+  [Chart Double]
+scatterChart xss = zipWith (\gs xs -> Chart (GlyphA gs) (PointXY <$> xs)) (gpaletteStyle 0.02) xss
+
+-- | histogram chart
+histChart ::
+  Text ->
+  Maybe [Text] ->
+  Range Double ->
+  Int ->
+  [Double] ->
+  (HudOptions, [Chart Double])
+histChart title names r g xs =
+  barChart defaultBarOptions barData
+    & first (#hudTitles .~ [defaultTitle title])
+  where
+    barData = BarData [hr] names Nothing
+    hcuts = grid OuterPos r g
+    h = fill hcuts xs
+    hr =
+      (\(Rect x x' _ _) -> (x + x') / 2)
+        <$> makeRects (IncludeOvers (NumHask.Space.width r / fromIntegral g)) h
+
+-- | a chart drawing a histogram based on quantile information
+quantileHistChart ::
+  Text ->
+  Maybe [Text] ->
+  -- | quantiles
+  [Double] ->
+  -- | quantile values
+  [Double] ->
+  (HudOptions, [Chart Double])
+quantileHistChart title names qs vs = (hudOptions, [chart'])
+  where
+    hudOptions =
+      defaultHudOptions
+        & #hudTitles
+        .~ [defaultTitle title]
+        & #hudAxes
+        .~ [ maybe
+               ( defaultAxisOptions & #axisTick . #tstyle
+                   .~ TickRound (FormatPrec (Just 3)) 8 TickExtend
+               )
+               ( \x ->
+                   defaultAxisOptions & #axisTick . #tstyle
+                     .~ TickPlaced (zip vs x)
+               )
+               names
+           ]
+    chart' = Chart (RectA defaultRectStyle) (RectXY <$> hr)
+    hr =
+      zipWith
+        (\(y, w) (x, z) -> Rect x z 0 ((w - y) / (z - x)))
+        (zip qs (drop 1 qs))
+        (zip vs (drop 1 vs))
+
+-- | pixel chart of digitized vs digitized counts
+digitSurfaceChart ::
+  SurfaceStyle ->
+  SurfaceLegendOptions ->
+  (Text, Text, Text) ->
+  [Text] ->
+  [(Int, Int)] ->
+  [Chart Double]
+digitSurfaceChart pixelStyle plo ts names ps =
+  runHud (aspect 1) (hs0 <> hs1) (cs0 <> cs1)
+  where
+    l = length names
+    pts = Point l l
+    gr :: Rect Double
+    gr = fromIntegral <$> Rect 0 l 0 l
+    mapCount = foldl' (\m x -> HashMap.insertWith (+) x 1.0 m) HashMap.empty ps
+    f :: Point Double -> Double
+    f (Point x y) = fromMaybe 0 $ HashMap.lookup (floor x, floor y) mapCount
+    (hs0, cs0) = makeHud gr (qvqHud ts names)
+    (cs1, hs1) =
+      surfacefl
+        f
+        (SurfaceOptions pixelStyle pts gr)
+        plo
+
+-- style helpers
+qvqHud :: (Text, Text, Text) -> [Text] -> HudOptions
+qvqHud ts labels =
+  defaultHudOptions
+    & #hudTitles .~ makeTitles ts
+    & #hudAxes
+      .~ [ defaultAxisOptions
+             & #axisTick . #tstyle .~ TickPlaced (zip ((0.5 +) <$> [0 ..]) labels)
+             & #place .~ PlaceLeft,
+           defaultAxisOptions
+             & #axisTick . #tstyle .~ TickPlaced (zip ((0.5 +) <$> [0 ..]) labels)
+             & #place .~ PlaceBottom
+         ]
+
+makeTitles :: (Text, Text, Text) -> [Title]
+makeTitles (t, xt, yt) =
+  reverse
+    [ defaultTitle t,
+      defaultTitle xt & #place .~ PlaceBottom & #style . #size .~ 0.06,
+      defaultTitle yt & #place .~ PlaceLeft & #style . #size .~ 0.06
+    ]
+
+-- | Chart for double list of Text.
+tableChart :: [[Text]] -> [Chart Double]
+tableChart tss = zipWith (\ts x -> Chart (TextA defaultTextStyle ts) (P x <$> take (length ts) [0 ..])) tss [0 ..]
+
diff --git a/src/Data/Colour.hs b/src/Data/Colour.hs
--- a/src/Data/Colour.hs
+++ b/src/Data/Colour.hs
@@ -1,26 +1,23 @@
 {-# LANGUAGE AllowAmbiguousTypes #-}
 {-# LANGUAGE ConstraintKinds #-}
 {-# LANGUAGE DataKinds #-}
-{-# LANGUAGE DeriveFunctor #-}
 {-# LANGUAGE DeriveGeneric #-}
 {-# LANGUAGE DuplicateRecordFields #-}
 {-# LANGUAGE FlexibleContexts #-}
 {-# LANGUAGE FlexibleInstances #-}
 {-# LANGUAGE MultiParamTypeClasses #-}
-{-# LANGUAGE OverloadedLabels #-}
 {-# LANGUAGE OverloadedStrings #-}
 {-# LANGUAGE PatternSynonyms #-}
 {-# LANGUAGE RankNTypes #-}
-{-# LANGUAGE RebindableSyntax #-}
 {-# LANGUAGE TypeFamilies #-}
 {-# OPTIONS_GHC -Wall #-}
 {-# OPTIONS_GHC -fno-warn-name-shadowing #-}
 {-# OPTIONS_GHC -fno-warn-overlapping-patterns #-}
 {-# OPTIONS_GHC -fno-warn-type-defaults #-}
 
+-- | Colour representations and combinations, based on <https://hackage.haskell.org/package/Color>
 module Data.Colour
-  ( -- $color
-    Colour,
+  ( Colour,
     pattern Colour,
     opac,
     setOpac,
@@ -29,6 +26,7 @@
     palette,
     palette1,
     blend,
+    blends,
     toHex,
     fromHex,
     unsafeFromHex,
@@ -37,9 +35,6 @@
     transparent,
     black,
     white,
-
-    -- * re-exports
-    module Graphics.Color.Model,
   )
 where
 
@@ -47,21 +42,17 @@
 import Data.FormatN
 import Data.Generics.Labels ()
 import qualified Data.Text as Text
-import Graphics.Color.Model hiding (one, toRealFloat, zero)
-import NumHask.Prelude
+import Graphics.Color.Model
+import NumHask.Prelude as NHP
 import qualified Prelude as P
 
--- $setup
---
--- >>> :set -XOverloadedLabels
--- >>> :set -XNoImplicitPrelude
--- >>> import Control.Lens
--- >>> import Chart.Render
-
--- | snatching Colour as the library color representation.
-newtype Colour = Colour' {color' :: Color (Alpha RGB) Double} deriving (Eq, Generic)
+-- | Wrapper for 'Color'.
+newtype Colour =
+  Colour'
+  { color' :: Color (Alpha RGB) Double
+  } deriving (Eq, Generic)
 
--- | Constructor.
+-- | Constructor pattern.
 pattern Colour :: Double -> Double -> Double -> Double -> Colour
 pattern Colour r g b a = Colour' (ColorRGBA r g b a)
 
@@ -104,6 +95,26 @@
     b'' = b + c * (b' - b)
     a'' = a + c * (a' - a)
 
+-- | interpolate across a list of Colours, with input being in Range 0 1
+--
+-- >>> blends 0 [black, (Colour 0.2 0.6 0.8 0.5), white] == black
+-- True
+--
+-- >>> blends 1 [black, (Colour 0.2 0.6 0.8 0.5), white] == white
+-- True
+--
+-- >>> blends 0.6 [black, (Colour 0.2 0.6 0.8 0.5), white]
+-- RGBA 0.16 0.48 0.64 0.60
+blends :: Double -> [Colour] -> Colour
+blends _ [] = black
+blends _ [c] = c
+blends x cs = blend r (cs P.!! i) (cs P.!! (i+1))
+  where
+    l = length cs - 1
+    x' = x * fromIntegral l
+    i = max 0 (min (floor x') (l - 1))
+    r = x' - fromIntegral i
+
 -- |
 parseHex :: A.Parser (Color RGB Double)
 parseHex =
@@ -131,10 +142,10 @@
     <> Text.justifyRight 2 '0' (hex' g)
     <> Text.justifyRight 2 '0' (hex' b)
   where
-    (ColorRGBA r g b _) = toWord8 <$> color' c
+    (ColorRGBA r g b _) = toIntegral . toWord8 <$> color' c
 
 -- |
-hex' :: (FromInteger a, ToIntegral a Integer, Integral a, Ord a, Subtractive a) => a -> Text
+hex' :: Int -> Text
 hex' i
   | i < 0 = "-" <> go (- i)
   | otherwise = go i
@@ -144,10 +155,10 @@
       | otherwise = go (n `quot` 16) <> hexDigit (n `rem` 16)
 
 -- |
-hexDigit :: (Ord a, FromInteger a, ToIntegral a Integer) => a -> Text
+hexDigit :: Int -> Text
 hexDigit n
-  | n <= 9 = Text.singleton P.$! i2d (fromIntegral n)
-  | otherwise = Text.singleton P.$! toEnum (fromIntegral n + 87)
+  | n <= 9 = Text.singleton P.$! i2d n
+  | otherwise = Text.singleton P.$! toEnum (n + 87)
 
 -- |
 i2d :: Int -> Char
@@ -155,7 +166,7 @@
 
 -- | some RGB colors to work with
 palette :: [Color RGB Double]
-palette = unsafeFromHex <$> ["#a6cee3", "#1f78b4", "#b2df8a", "#33a02c", "#fb9a99", "#e31a1c", "#fdbf6f", "#ff7f00", "#cab2d6", "#6a3d9a", "#ffff99", "#b15928"]
+palette = unsafeFromHex <$> ["#a6cee3", "#1f78b4", "#e31a1c", "#b2df8a", "#33a02c", "#fb9a99", "#fdbf6f", "#ff7f00", "#cab2d6", "#6a3d9a", "#ffff99", "#b15928"]
 
 -- | some RGBA colors
 palette1 :: [Colour]
diff --git a/src/Data/FormatN.hs b/src/Data/FormatN.hs
--- a/src/Data/FormatN.hs
+++ b/src/Data/FormatN.hs
@@ -1,15 +1,12 @@
 {-# LANGUAGE AllowAmbiguousTypes #-}
 {-# LANGUAGE ConstraintKinds #-}
 {-# LANGUAGE DataKinds #-}
-{-# LANGUAGE DeriveFunctor #-}
 {-# LANGUAGE DeriveGeneric #-}
 {-# LANGUAGE DuplicateRecordFields #-}
 {-# LANGUAGE FlexibleContexts #-}
 {-# LANGUAGE FlexibleInstances #-}
 {-# LANGUAGE MultiParamTypeClasses #-}
-{-# LANGUAGE OverloadedLabels #-}
 {-# LANGUAGE OverloadedStrings #-}
-{-# LANGUAGE PatternSynonyms #-}
 {-# LANGUAGE RankNTypes #-}
 {-# LANGUAGE RebindableSyntax #-}
 {-# LANGUAGE TypeFamilies #-}
@@ -18,9 +15,9 @@
 {-# OPTIONS_GHC -fno-warn-overlapping-patterns #-}
 {-# OPTIONS_GHC -fno-warn-type-defaults #-}
 
+-- | Formatting of numeric values.
 module Data.FormatN
-  ( -- $formats
-    FormatN (..),
+  ( FormatN (..),
     defaultFormatN,
     fromFormatN,
     toFormatN,
@@ -33,6 +30,7 @@
     formatN,
     precision,
     formatNs,
+    showOr,
   )
 where
 
@@ -120,7 +118,7 @@
     (ds0, ds1) = splitAt (n + 1) ds
     r =
       (fromIntegral $ foldl' (\x a -> x * 10 + a) 0 ds0 :: Double)
-        + (fromIntegral $ foldl' (\x a -> x * 10 + a) 0 ds1) / (10.0 ^ (length ds1 :: Int))
+        + fromIntegral (foldl' (\x a -> x * 10 + a) 0 ds1) / (10.0^length ds1)
     r' = round r :: Integer
 
 -- | format numbers between 0.001 and 1,000,000 using digit and comma notation and exponential outside this range, with x significant figures.
@@ -146,7 +144,7 @@
   | x > 1e6 = expt n x
   | otherwise = decimal n (toRealFloat x')
   where
-    x' = maybe fromFloatDigits roundSig n $ x
+    x' = maybe fromFloatDigits roundSig n x
 
 -- | round to n significant figures and always use decimal notation
 -- >>> decimal (Just 2) 0.000001234
@@ -157,7 +155,7 @@
 decimal :: Maybe Int -> Double -> Text
 decimal n x = x''
   where
-    x' = pack $ formatScientific Fixed Nothing $ maybe fromFloatDigits roundSig n $ x
+    x' = pack $ formatScientific Fixed Nothing $ maybe fromFloatDigits roundSig n x
     x'' = (\x -> bool x' (fst x) (snd x == ".0")) $ Text.breakOn "." x'
 
 -- | add commas format for numbers above 1,000 but below 1 million, otherwise use prec.
@@ -176,7 +174,7 @@
     Just _ -> addcomma (prec n x)
   where
     addcomma :: Text -> Text
-    addcomma x = (\x -> fst x <> snd x) . first (Text.reverse . Text.intercalate "," . Text.chunksOf 3 . Text.reverse) $ Text.breakOn "." x
+    addcomma x = uncurry (<>) . first (Text.reverse . Text.intercalate "," . Text.chunksOf 3 . Text.reverse) $ Text.breakOn "." x
 
 -- | dollars and cents, always decimal notation
 --
@@ -185,7 +183,7 @@
 --
 -- >>> dollar (Just 2) 0.01234
 -- "$0.0123"
-dollar :: (Maybe Int) -> Double -> Text
+dollar :: Maybe Int -> Double -> Text
 dollar n x
   | x < 0 = "-" <> dollar n (- x)
   | otherwise = "$" <> comma n x
@@ -230,3 +228,11 @@
 formatNs (FormatDollar n) xs = precision dollar n xs
 formatNs (FormatPercent n) xs = precision percent n xs
 formatNs FormatNone xs = pack . show <$> xs
+
+-- | Format with the shorter of show and formatN.
+showOr :: FormatN -> Double -> Text
+showOr f x = bool (bool f' s' (Text.length s' < Text.length f')) "0" (x < 1e-6 && x > -1e-6)
+  where
+    f' = formatN f x
+    s' = show x
+    
diff --git a/src/Data/Path.hs b/src/Data/Path.hs
new file mode 100644
--- /dev/null
+++ b/src/Data/Path.hs
@@ -0,0 +1,694 @@
+{-# LANGUAGE FlexibleContexts #-}
+{-# LANGUAGE DeriveGeneric #-}
+{-# LANGUAGE NegativeLiterals #-}
+{-# LANGUAGE RebindableSyntax #-}
+{-# LANGUAGE OverloadedLabels #-}
+{-# LANGUAGE OverloadedStrings #-}
+{-# LANGUAGE AllowAmbiguousTypes #-}
+{-# OPTIONS_GHC -fno-warn-type-defaults #-}
+{-# OPTIONS_GHC -fno-warn-name-shadowing #-}
+
+-- | SVG path manipulation
+module Data.Path
+  ( -- * Path fundamental
+    -- $path
+    PathInfo (..),
+    ArcInfo (..),
+    ArcPosition (..),
+    parsePath,
+    toPathAbsolute,
+    toPathCommand,
+    toPathAbsolutes,
+    toPathXYs,
+    ArcCentroid (..),
+    arcCentroid,
+    arcPosition,
+    arcBox,
+    arcDerivs,
+    ellipse,
+    QuadPosition (..),
+    QuadPolar (..),
+    quadPosition,
+    quadPolar,
+    quadBox,
+    quadBezier,
+    quadDerivs,
+    CubicPosition (..),
+    CubicPolar (..),
+    cubicPosition,
+    cubicPolar,
+    cubicBox,
+    cubicBezier,
+    cubicDerivs,
+    singletonCubic,
+    singletonQuad,
+    singletonArc,
+    singletonPie,
+    singletonPie',
+    toSingletonArc,
+    pathBoxes,
+    pathBox,
+  ) where
+
+import qualified Graphics.SvgTree as SvgTree
+import Graphics.SvgTree (PathCommand (..), Origin(..))
+import Graphics.SvgTree.PathParser
+import qualified Data.Attoparsec.Text as A
+import qualified Data.Text as Text
+import NumHask.Space
+import NumHask.Prelude hiding (rotate)
+import qualified Linear
+import qualified Control.Foldl as L
+import Control.Lens hiding ((...))
+import Data.Generics.Labels ()
+import qualified Geom2D.CubicBezier as B
+import Data.FormatN
+
+-- $setup
+-- >>> :set -XRebindableSyntax
+-- >>> :set -XNegativeLiterals
+-- >>> import NumHask.Prelude
+-- >>> import Chart
+
+-- $path
+-- Every element of an svg path can be thought of as exactly two points in space, with instructions of how to draw a curve between them.  From this point of view, one which this library adopts, a path chart is thus very similar to a line chart.  There's just a lot more information about the style of this line to deal with.
+--
+-- References:
+--
+-- [SVG d](https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/d)
+--
+-- [SVG path](https://developer.mozilla.org/en-US/docs/Web/SVG/Tutorial/Paths)
+--
+
+-- | parse a raw path string
+--
+-- >>> let outerseg1 = "M-1.0,0.5 A0.5 0.5 0.0 1 1 0.0,-1.2320508075688774 1.0 1.0 0.0 0 0 -0.5,-0.3660254037844387 1.0 1.0 0.0 0 0 -1.0,0.5 Z"
+-- >>> parsePath outerseg1
+-- [MoveTo OriginAbsolute [V2 (-1.0) 0.5],EllipticalArc OriginAbsolute [(0.5,0.5,0.0,True,True,V2 0.0 (-1.2320508075688774)),(1.0,1.0,0.0,False,False,V2 (-0.5) (-0.3660254037844387)),(1.0,1.0,0.0,False,False,V2 (-1.0) 0.5)],EndPath]
+--
+-- https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/d
+--
+parsePath :: Text -> [PathCommand]
+parsePath t = either (const []) id $ A.parseOnly pathParser t
+
+-- | To fit in with the requirements of the 'Chart' interface, path instructions need to be decontructed into:
+--
+-- - define a single chart element as a line.
+--
+-- - split a single path element into the start and end points of the line, which become the 'Chart.Types.xys' of a 'Chart.Types.Chart', and the rest of the information, which is called 'PathInfo' and incorporated into the 'Chart.Types.Chart' 'Chart.Types.annotation'.
+--
+-- A lot of detail rides on whether the PathInfo is invariant to affine transformations of the 'Chart.Types.xys' points. Cubic and quadratic bezier paths need to be re-projected whenever 'Chart.Types.xys' are re-projected. Arcs are problematic (See 'Chart.Examples.problematic2' & 'Chart.Examples.problematic2').
+data PathInfo a =
+  StartI |
+  LineI |
+  CubicI (Point a) (Point a) |
+  QuadI (Point a) |
+  ArcI (ArcInfo a)
+  deriving (Show, Eq, Generic)
+
+-- | convert from a path info, start point, end point triple to a path text clause.
+--
+-- Note that morally,
+--
+-- > toPathsAbsolute . toInfos . parsePath == id
+--
+-- but the round trip destroys much information, including:
+--
+-- - path text spacing
+--
+-- - "Z", which is replaced by a LineI instruction from the end point back to the original start of the path.
+--
+-- - Sequences of the same instruction type are uncompressed
+--
+-- - As the name suggests, relative paths are translated to absolute ones.
+--
+-- - implicit L's in multiple M instructions are separated.
+--
+-- In converting between chart-svg and SVG there are two changes in reference:
+--
+-- - arc rotation is expressed as positive degrees for a clockwise rotation in SVG, and counter-clockwise in radians for chart-svg
+--
+-- - A positive y-direction is down for SVG and up for chart-svg
+--
+toPathAbsolute ::
+  -- | (info, start, end)
+  (PathInfo Double, Point Double) ->
+  -- | path text
+  Text
+toPathAbsolute (StartI,p) = "M " <> pp p
+toPathAbsolute (LineI,p) = "L " <> pp p
+toPathAbsolute (CubicI c1 c2, next) =
+  "C " <>
+  pp c1 <> " " <>
+  pp c2 <> " " <>
+  pp next
+toPathAbsolute (QuadI control, next) =
+  "Q " <>
+  pp control <> " " <>
+  pp next
+toPathAbsolute (ArcI (ArcInfo (Point x y) phi' l sw), x2) =
+  "A " <>
+  show x <> " " <>
+  show y <> " " <>
+  show (-phi' * 180 / pi) <> " " <>
+  bool "0" "1" l <> " " <>
+  bool "0" "1" sw <> " " <>
+  pp x2
+
+-- | render a point (including a flip of the y dimension).
+pp :: Point Double -> Text
+pp (Point x y) =
+  showOr (FormatFixed (Just 4)) x <> "," <>
+  showOr (FormatFixed (Just 4)) (bool (-y) y (y==zero))
+
+-- | convert an (info, point) list to an svg d path text.
+toPathAbsolutes :: [(PathInfo Double, Point Double)] -> Text
+toPathAbsolutes = L.fold (L.Fold step begin done)
+  where
+    done = Text.intercalate " " . reverse
+    begin = []
+    step ts (info, next) = toPathAbsolute (info, next):ts
+
+-- | Convert from PathInfo to PathCommand
+toPathCommand ::
+  (PathInfo Double, Point Double) ->
+  -- | path text
+  PathCommand
+toPathCommand (StartI,p) = MoveTo OriginAbsolute [toV2 p]
+toPathCommand (LineI,p) = LineTo OriginAbsolute [toV2 p]
+toPathCommand (CubicI c1 c2, p) = CurveTo OriginAbsolute [(toV2 c1, toV2 c2, toV2 p)]
+toPathCommand (QuadI c, p) = QuadraticBezier OriginAbsolute [(toV2 c, toV2 p)]
+toPathCommand (ArcI (ArcInfo (Point rx ry) phi' l sw), p) =
+  EllipticalArc OriginAbsolute [(rx,ry,phi',l,sw,toV2 p)]
+
+toV2 :: Point a -> Linear.V2 a
+toV2 (Point x y) = Linear.V2 x y
+
+data StateInfo =
+  StateInfo
+  {
+    -- | previous position
+    cur :: Point Double,
+    -- | start point (to close out the path)
+    start :: Point Double,
+    -- | last control point
+    infoControl :: Point Double
+  } deriving (Eq, Show, Generic)
+
+stateInfo0 :: StateInfo
+stateInfo0 = StateInfo zero zero zero
+
+-- | Convert a path command fragment to an instruction + point.
+--
+-- flips the y-dimension of points.
+toInfo :: StateInfo -> SvgTree.PathCommand -> (StateInfo, [(PathInfo Double, Point Double)])
+toInfo s (MoveTo _ []) = (s, [])
+toInfo _ (MoveTo OriginAbsolute (x:xs)) = L.fold (L.Fold step begin (second reverse)) (fromV2 <$> xs)
+  where
+    x0 = fromV2 x
+    begin = (StateInfo x0 x0 zero, [(StartI, x0)])
+    step (s, p) a = (s & #cur .~ a, (LineI, a):p)
+toInfo s (MoveTo OriginRelative (x:xs)) = L.fold (L.Fold step begin (second reverse)) (fromV2 <$> xs)
+  where
+    x0 = s ^. #cur + fromV2 x
+    begin = (StateInfo x0 x0 zero, [(StartI, x0)])
+    step (s, p) a = let a' = a + s ^. #cur in (s & #cur .~ a', (LineI, a'):p)
+toInfo s EndPath = (s, [(LineI, s ^. #start)])
+toInfo s (LineTo OriginAbsolute xs) = L.fold (L.Fold step (s,[]) (second reverse)) (fromV2 <$> xs)
+  where
+    step (s, p) a = (s & #cur .~ a, (LineI, a):p)
+toInfo s (LineTo OriginRelative xs) = L.fold (L.Fold step (s,[]) (second reverse)) (fromV2 <$> xs)
+  where
+    step (s, p) a = let a' = a + s ^. #cur in (s & #cur .~ a', (LineI, a'):p)
+toInfo s (HorizontalTo OriginAbsolute xs) = L.fold (L.Fold step (s,[]) (second reverse)) xs
+  where
+    step (s@(StateInfo (Point _ cy) _ _), p) a =
+      let a' = Point a cy in (s & #cur .~ a', (LineI, a'):p)
+toInfo s (HorizontalTo OriginRelative xs) = L.fold (L.Fold step (s,[]) (second reverse)) xs
+  where
+    step (s@(StateInfo (Point cx cy) _ _), p) a =
+      let a' = Point (a+cx) cy in (s & #cur .~ a', (LineI, a'):p)
+toInfo s (VerticalTo OriginAbsolute xs) = L.fold (L.Fold step (s,[]) (second reverse)) xs
+  where
+    step (s@(StateInfo (Point cx _) _ _), p) a =
+      let a' = Point cx a in (s & #cur .~ a', (LineI, a'):p)
+toInfo s (VerticalTo OriginRelative xs) = L.fold (L.Fold step (s,[]) (second reverse)) xs
+  where
+    step (s@(StateInfo (Point cx cy) _ _), p) a =
+      let a' = Point cx (a+cy) in (s & #cur .~ a', (LineI, a'):p)
+toInfo s (CurveTo OriginAbsolute xs) =
+  L.fold (L.Fold step (s,[]) (second reverse)) xs'
+  where
+    xs' = (\(c1,c2,x2) -> (fromV2 c1, fromV2 c2, fromV2 x2)) <$> xs
+    step (s, p) (c1,c2,x2) =
+          (s & #cur .~ x2 & #infoControl .~ c2, (CubicI c1 c2, x2):p)
+toInfo s (CurveTo OriginRelative xs) =
+  L.fold (L.Fold step (s,[]) (second reverse)) xs'
+  where
+    xs' = (\(c1,c2,x2) -> (fromV2 c1, fromV2 c2, fromV2 x2)) <$> xs
+    step (s, p) (c1,c2,x2) =
+          (s & #cur .~ (x2 + s ^. #cur) & #infoControl .~ (c2 + s ^. #cur), (CubicI (c1+ s ^. #cur) (c2 + s ^. #cur), x2 + s ^. #cur):p)
+toInfo s (SmoothCurveTo OriginAbsolute xs) =
+  L.fold (L.Fold step (s,[]) (second reverse)) xs'
+  where
+    xs' = bimap fromV2 fromV2 <$> xs
+    step (s, p) (c2,x2) =
+          (s & #cur .~ x2, (CubicI (s ^. #cur - (s ^. #infoControl - s^. #cur)) c2, x2):p)
+toInfo s (SmoothCurveTo OriginRelative xs) =
+  L.fold (L.Fold step (s,[]) (second reverse)) xs'
+  where
+    xs' = bimap fromV2 fromV2 <$> xs
+    step (s, p) (c2,x2) =
+          (s &
+           #cur .~ (x2 + s ^. #cur) &
+           #infoControl .~ (c2 + s ^. #cur),
+           (CubicI (s ^. #cur - (s ^. #infoControl - s^. #cur)) (c2 + s ^. #cur), x2 + s ^. #cur):p)
+toInfo s (QuadraticBezier OriginAbsolute xs) =
+  L.fold (L.Fold step (s,[]) (second reverse)) xs'
+  where
+    xs' = bimap fromV2 fromV2 <$> xs
+    step (s, p) (c1, x2) =
+          (s &
+           #cur .~ x2 &
+           #infoControl .~ c1,
+           (QuadI c1, x2):p)
+toInfo s (QuadraticBezier OriginRelative xs) =
+  L.fold (L.Fold step (s,[]) (second reverse)) xs'
+  where
+    xs' = bimap fromV2 fromV2 <$> xs
+    step (s, p) (c1,x2) =
+          (s & #cur .~ x2 & #infoControl .~ (c1 + s ^. #cur), (QuadI (c1 + s ^. #cur), x2 + s ^. #cur):p)
+toInfo s (SmoothQuadraticBezierCurveTo OriginAbsolute xs) =
+  L.fold (L.Fold step (s,[]) (second reverse)) xs'
+  where
+    xs' = fromV2 <$> xs
+    step (s, p) x2 =
+          (s &
+           #cur .~ x2 &
+           #infoControl .~ (s ^. #cur - (s ^. #infoControl - s ^. #cur)),
+           (QuadI (s ^. #cur - (s ^. #infoControl - s^. #cur)), x2):p)
+toInfo s (SmoothQuadraticBezierCurveTo OriginRelative xs) =
+  L.fold (L.Fold step (s,[]) (second reverse)) xs'
+  where
+    xs' = fromV2 <$> xs
+    step (s, p) x2 =
+          (s &
+           #cur .~ (x2 + s ^. #cur) &
+           #infoControl .~ (s ^. #cur - (s ^. #infoControl - s ^. #cur)),
+           (QuadI (s ^. #cur - (s ^. #infoControl - s^. #cur)), x2 + s ^. #cur):p)
+toInfo s (EllipticalArc OriginAbsolute xs) =
+  L.fold (L.Fold step (s,[]) (second reverse)) xs'
+  where
+    xs' = (\(x,y,r,l,sw,x2) -> (x,y,r,l,sw,fromV2 x2)) <$> xs
+    step (s, p) a@(_,_,_,_,_,x2) =
+          (s & #cur .~ x2, (fromPathEllipticalArc (s ^. #cur) a, x2):p)
+toInfo s (EllipticalArc OriginRelative xs) =
+  L.fold (L.Fold step (s,[]) (second reverse)) xs'
+  where
+    xs' = (\(x,y,r,l,sw,x2) -> (x,y,r,l,sw,fromV2 x2)) <$> xs
+    step (s, p) a@(_,_,_,_,_,x2) =
+      let x2' = x2 + s ^. #cur in
+          (s & #cur .~ x2', (fromPathEllipticalArc (s ^. #cur) a, x2'):p)
+
+fromPathEllipticalArc :: Point a -> (a, a, a, Bool, Bool, Point a) -> PathInfo a
+fromPathEllipticalArc _ (x, y, r, l, s, _) = ArcI (ArcInfo (Point x y) r l s)
+
+fromV2 :: (Subtractive a) => Linear.V2 a -> Point a
+fromV2 (Linear.V2 x y) = Point x (-y)
+
+-- | Convert from a path command list to a PathA specification
+--
+toPathXYs :: [SvgTree.PathCommand] -> [(PathInfo Double, Point Double)]
+toPathXYs [] = []
+toPathXYs xs =
+  snd (foldl' (\(x,l) a -> second (l<>) $ toInfo x a) (stateInfo0,[]) xs)
+
+-- | convert cubic position to path info.
+singletonCubic :: CubicPosition Double -> [(PathInfo Double, Point Double)]
+singletonCubic (CubicPosition s e c1 c2) = [(StartI, s), (CubicI c1 c2, e)]
+
+-- | convert quad position to path info.
+singletonQuad :: QuadPosition Double -> [(PathInfo Double, Point Double)]
+singletonQuad (QuadPosition s e c) = [(StartI, s), (QuadI c, e)]
+
+-- | convert arc position to path info.
+singletonArc :: ArcPosition Double -> [(PathInfo Double, Point Double)]
+singletonArc (ArcPosition s e i) = [(StartI, s), (ArcI i, e)]
+
+-- | convert arc position to a pie slice.
+singletonPie :: ArcPosition Double -> [(PathInfo Double, Point Double)]
+singletonPie p@(ArcPosition s e i) = [(StartI, c), (LineI, s), (ArcI i, e), (LineI, c)]
+  where
+    ac = arcCentroid p
+    c = ac ^. #centroid
+
+-- | convert arc position to a pie slice, with a specific center.
+singletonPie' :: Point Double -> ArcPosition Double -> [(PathInfo Double, Point Double)]
+singletonPie' c (ArcPosition s e i) = [(StartI, c), (LineI, s), (ArcI i, e), (LineI, c)]
+
+-- | convert path info to an ArcPosition.
+toSingletonArc :: [(PathInfo Double, Point Double)] -> Maybe (ArcPosition Double)
+toSingletonArc ((StartI, s):(ArcI i, e):_) = Just $ ArcPosition s e i
+toSingletonArc _ = Nothing
+
+-- * Arc types
+-- | Information about an individual arc path.
+--
+data ArcInfo a =
+  ArcInfo
+  { -- | ellipse radii
+    radii :: Point a,
+    -- | rotation of the ellipse. positive means counter-clockwise (which is different to SVG).
+    phi :: a,
+    large :: Bool,
+    -- | sweep means clockwise
+    clockwise :: Bool
+  } deriving (Eq, Show, Generic)
+
+-- | Specification of an Arc using positional referencing as per SVG standard.
+data ArcPosition a =
+  ArcPosition
+  { posStart :: Point a,
+    posEnd :: Point a,
+    posInfo :: ArcInfo a
+  } deriving (Eq, Show, Generic)
+
+-- | Arc specification based on centroidal interpretation.
+--
+-- See: https://www.w3.org/TR/SVG/implnote.html#ArcConversionEndpointToCenter
+--
+data ArcCentroid a =
+  ArcCentroid
+  { -- | ellipse center
+    centroid :: Point a,
+    -- | ellipse radii
+    radius :: Point a,
+    -- | ellipse rotation
+    cphi :: a,
+    -- | starting point angle to the x-axis
+    ang0 :: a,
+    -- | difference between ending point angle and starting point angle
+    angdiff :: a
+  } deriving (Eq, Show, Generic)
+
+-- | convert from an ArcPosition spec to ArcCentroid spec.
+--
+-- >>> let p = ArcPosition (Point 0 0) (Point 1 0) (ArcInfo (Point 1 0.5) (pi/4) False True)
+-- >>> arcCentroid p
+-- ArcCentroid {centroid = Point 0.20952624903444356 -0.48412291827592724, radius = Point 1.0 0.5, cphi = 0.7853981633974483, ang0 = 1.3753858999692936, angdiff = -1.823476581936975}
+arcCentroid :: (FromInteger a, Ord a, TrigField a, ExpField a) => ArcPosition a -> ArcCentroid a
+arcCentroid (ArcPosition p1@(Point x1 y1) p2@(Point x2 y2) (ArcInfo rad phi large clockwise)) = ArcCentroid c (Point rx ry) phi ang1 angd
+  where
+    (Point x1' y1') = rotateP (-phi) ((p1 - p2) /. two)
+    (Point rx' ry') = rad
+    l = x1'**2/rx'**2 + y1'**2/ry'**2
+    (rx,ry) = bool (rx',ry') (rx'*sqrt l, ry'*sqrt l) (l > 1)
+    snumer = max 0 $ (rx*rx*ry*ry) - (rx*rx*y1'*y1') - (ry*ry*x1'*x1')
+    s = bool -1 1 (large == clockwise) * sqrt
+      (snumer / (rx*rx*y1'*y1' + ry*ry*x1'*x1'))
+    cx' = s *  rx * y1' / ry
+    cy' = s * (-ry) * x1' / rx
+    cx = (x1 + x2) / 2 + cos phi * cx' - sin phi * cy'
+    cy = (y1 + y2) / 2 + sin phi * cx' + cos phi * cy'
+    c = Point cx cy
+    ang1 = angle (Point (-(cx'-x1')/rx) (-(cy'-y1')/ry))
+    ang2 = angle (Point (-(cx'+x1')/rx) (-(cy'+y1')/ry))
+    angd' = ang2 - ang1
+    angd =
+      bool 0 (2*pi) (not clockwise && angd'<0) +
+      bool 0 (-2*pi) (clockwise && angd'>0) +
+      angd'
+
+-- | convert from an ArcCentroid to an ArcPosition specification.
+--
+-- Morally,
+-- > arcPosition . arcCentroid == id
+--
+-- Not isomorphic if:
+--
+-- - angle diff is pi and large is True
+--
+-- - radii are less than they should be and thus get scaled up.
+--
+arcPosition :: (Ord a, Signed a, TrigField a) => ArcCentroid a -> ArcPosition a
+arcPosition (ArcCentroid c r phi ang1 angd) =
+  ArcPosition p1 p2 (ArcInfo r phi large clockwise)
+  where
+    p1 = ellipse c r phi ang1
+    p2 = ellipse c r phi (ang1+angd)
+    large = abs angd > pi
+    clockwise = angd < zero
+
+-- | ellipse formulae
+--
+-- >>> ellipse zero (Point 1 2) (pi/6) pi
+-- Point -0.8660254037844388 -0.4999999999999997
+--
+-- Compare this "elegent" definition from [stackexchange](https://math.stackexchange.com/questions/426150/what-is-the-general-equation-of-the-ellipse-that-is-not-in-the-origin-and-rotate)
+--
+-- \[dfrac {((x-h)\cos(A)+(y-k)\sin(A))^2}{a^2}+\dfrac{((x-h) \sin(A)-(y-k) \cos(A))^2}{b^2}=1\]
+--
+-- with the haskell code:
+--
+-- > c + (rotate phi |. (r * ray theta))
+--
+-- See also: [wolfram](https://mathworld.wolfram.com/Ellipse.html)
+--
+ellipse :: (Direction b a, Affinity b a, TrigField a) => b -> b -> a -> a -> b
+ellipse c r phi theta = c + (rotate phi |. (r * ray theta))
+
+-- | compute the bounding box for an arcBox
+--
+-- > let p = ArcPosition (Point 0 0) (Point 1 0) (ArcInfo (Point 1 0.5) (pi/4) False True)
+-- > arcBox p
+-- Rect -8.326672684688674e-17 0.9999999999999998 -5.551115123125783e-17 0.30644649676616753
+arcBox :: ArcPosition Double -> Rect Double
+arcBox p = space1 pts
+  where
+    (ArcCentroid c r phi ang0 angd) = arcCentroid p
+    (x',y') = arcDerivs r phi
+    angr = ang0 ... (ang0 + angd) :: Range Double
+    angs =
+      filter (|.| angr)
+      [ x',
+        x' - 2 * pi,
+        x'+pi,
+        x'-pi,
+        y',
+        y' - 2 * pi,
+        y'+pi,
+        y'-pi,
+        ang0,
+        ang0+angd
+      ]
+    pts = ellipse c r phi <$> angs
+
+-- | potential arc turning points.
+--
+-- >>> arcDerivs (Point 1 0.5) (pi/4)
+-- (-0.4636476090008061,0.4636476090008062)
+arcDerivs :: Point Double -> Double -> (Double, Double)
+arcDerivs (Point rx ry) phi = (thetax1, thetay1)
+  where
+    thetax1 = atan2 (-sin phi * ry) (cos phi * rx)
+    thetay1 = atan2 (cos phi * ry) (sin phi * rx)
+
+-- * bezier
+-- | Quadratic bezier curve expressed in positional terms.
+--
+data QuadPosition a =
+  QuadPosition
+  { -- | starting point
+    qposStart :: Point a,
+    -- | ending point
+    qposEnd :: Point a,
+    -- | control point
+    qposControl :: Point a
+  } deriving (Eq, Show, Generic)
+
+-- | Quadratic bezier curve with control point expressed in polar terms normalised to the start - end line.
+data QuadPolar a =
+  QuadPolar
+  { -- | starting point
+    qpolStart :: Point a,
+    -- | ending point
+    qpolEnd :: Point a,
+    -- | control point in terms of distance from and angle to the qp0 - qp2 line
+    qpolControl :: Polar a a
+  } deriving (Eq, Show, Generic)
+
+-- | Convert from a positional to a polar representation of a cubic bezier.
+--
+-- >>> quadPolar (QuadPosition (Point 0 0) (Point 1 1) (Point 2 -1))
+-- QuadPolar {qpolStart = Point 0.0 0.0, qpolEnd = Point 1.0 1.0, qpolControl = Polar {magnitude = 2.1213203435596424, direction = -0.7853981633974483}}
+quadPolar :: (ExpField a, TrigField a) => QuadPosition a -> QuadPolar a
+quadPolar (QuadPosition start end control) = QuadPolar start end control'
+  where
+    mp = (start + end) /. two
+    control' = polar (control - mp)
+
+-- | Convert from a polar to a positional representation of a quadratic bezier.
+--
+-- > quadPosition . quadPolar == id
+-- > quadPolar . quadPosition == id
+--
+-- >>> quadPosition $ quadPolar (QuadPosition (Point 0 0) (Point 1 1) (Point 2 -1))
+-- QuadPosition {qposStart = Point 0.0 0.0, qposEnd = Point 1.0 1.0, qposControl = Point 2.0 -0.9999999999999998}
+quadPosition :: (ExpField a, TrigField a) => QuadPolar a -> QuadPosition a
+quadPosition (QuadPolar start end control) = QuadPosition start end control'
+  where
+    control' = coord control + (start + end) /. two
+
+-- | The quadratic bezier equation
+--
+-- >>> quadBezier (QuadPosition (Point 0 0) (Point 1 1) (Point 2 -1)) 0.33333333
+-- Point 0.9999999933333332 -0.33333333333333326
+quadBezier :: (ExpField a, FromInteger a) => QuadPosition a -> a -> Point a
+quadBezier (QuadPosition start end control) theta =
+  (1 - theta)^2 .* start +
+  2 * (1-theta) * theta .* control +
+  theta^2 .* end
+
+-- | QuadPosition turning points.
+--
+-- >>> quadDerivs (QuadPosition (Point 0 0) (Point 1 1) (Point 2 -1))
+-- [0.6666666666666666,0.3333333333333333]
+quadDerivs :: QuadPosition Double -> [Double]
+quadDerivs (QuadPosition start end control) = [x',y']
+  where
+    (Point detx dety) = start - 2 .* control + end
+    x' = bool ((_x start - _x control)/detx) (2 * (_x control - _x start)) (detx==0)
+    y' = bool ((_y start - _y control)/dety) (2 * (_y control - _y start)) (dety==0)
+
+-- | Bounding box for a QuadPosition
+--
+-- >>> quadBox (QuadPosition (Point 0 0) (Point 1 1) (Point 2 -1))
+-- Rect 0.0 1.3333333333333335 -0.33333333333333337 1.0
+quadBox :: QuadPosition Double -> Rect Double
+quadBox p = space1 pts
+  where
+    ts = quadDerivs p
+    pts = quadBezier p <$> ([0,1] <> ts)
+
+-- | cubic bezier curve
+--
+-- Note that the ordering is different to the svg standard.
+data CubicPosition a =
+  CubicPosition
+  { -- | starting point
+    cposStart :: Point a,
+    -- | ending point
+    cposEnd :: Point a,
+    -- | control point 1
+    cposControl1 :: Point a,
+    -- | control point 2
+    cposControl2 :: Point a
+  } deriving (Eq, Show, Generic)
+
+-- | A polar representation of a cubic bezier with control points expressed as polar and normalised to the start - end line.
+data CubicPolar a =
+  CubicPolar
+  { -- | starting point
+    cpolStart :: Point a,
+    -- | ending point
+    cpolEnd :: Point a,
+    -- | control point in terms of distance from and angle to the start end line
+    cpolControl1 :: Polar a a,
+    -- | control point in terms of distance from and angle to the start end line
+    cpolControl2 :: Polar a a
+  } deriving (Eq, Show, Generic)
+
+-- | Convert from a positional to a polar representation of a cubic bezier.
+--
+-- > cubicPosition . cubicPolar == id
+-- > cubicPolar . cubicPosition == id
+--
+-- >>> cubicPolar (CubicPosition (Point 0 0) (Point 1 1) (Point 1 -1) (Point 0 2))
+-- CubicPolar {cpolStart = Point 0.0 0.0, cpolEnd = Point 1.0 1.0, cpolControl1 = Polar {magnitude = 1.1180339887498947, direction = -1.2490457723982544}, cpolControl2 = Polar {magnitude = 1.1180339887498947, direction = 1.8925468811915387}}
+cubicPolar :: (ExpField a, TrigField a) => CubicPosition a -> CubicPolar a
+cubicPolar (CubicPosition start end control1 control2) = CubicPolar start end control1' control2'
+  where
+    mp = (start + end) /. two
+    control1' = polar $ (control1 - mp) /. norm (end - start)
+    control2' = polar $ (control2 - mp) /. norm (end - start)
+
+-- | Convert from a polar to a positional representation of a cubic bezier.
+--
+-- > cubicPosition . cubicPolar == id
+-- > cubicPolar . cubicPosition == id
+--
+-- >>> cubicPosition $ cubicPolar (CubicPosition (Point 0 0) (Point 1 1) (Point 1 -1) (Point 0 2))
+-- CubicPosition {cposStart = Point 0.0 0.0, cposEnd = Point 1.0 1.0, cposControl1 = Point 1.0 -1.0, cposControl2 = Point 1.6653345369377348e-16 2.0}
+cubicPosition :: (ExpField a, TrigField a) => CubicPolar a -> CubicPosition a
+cubicPosition (CubicPolar start end control1 control2) = CubicPosition start end control1' control2'
+  where
+    control1' = norm (end - start) .* coord control1 + (start + end) /. two
+    control2' = norm (end - start) .* coord control2 + (start + end) /. two
+
+-- | The cubic bezier equation
+--
+-- >>> cubicBezier (CubicPosition (Point 0 0) (Point 1 1) (Point 1 -1) (Point 0 2)) 0.8535533905932737
+-- Point 0.6767766952966369 1.2071067811865475
+cubicBezier :: (ExpField a, FromInteger a) => CubicPosition a -> a -> Point a
+cubicBezier (CubicPosition start end control1 control2) theta =
+  (1 - theta)^3 .* start +
+  3 * (1-theta)^2 * theta .* control1 +
+  3 * (1-theta) * theta^2 .* control2 +
+  theta^3 .* end
+
+-- | Turning point positions for a CubicPosition (0,1 or 2)
+--
+-- >>> cubicDerivs (CubicPosition (Point 0 0) (Point 1 1) (Point 1 -1) (Point 0 2))
+-- [0.8535533905932737,0.14644660940672624,0.5]
+cubicDerivs :: CubicPosition Double -> [Double]
+cubicDerivs (CubicPosition (Point c0x c0y) (Point c3x c3y)
+             (Point c1x c1y) (Point c2x c2y)) =
+  B.bezierHoriz b <> B.bezierVert b
+  where
+    b =
+      B.CubicBezier
+      (B.Point c0x c0y)
+      (B.Point c1x c1y)
+      (B.Point c2x c2y)
+      (B.Point c3x c3y)
+
+-- | Bounding box for a CubicPosition
+--
+-- >>> cubicBox (CubicPosition (Point 0 0) (Point 1 1) (Point 1 -1) (Point 0 2))
+-- Rect 0.0 1.0 -0.20710678118654752 1.2071067811865475
+--
+-- ![Cubic]("other/cubic.svg")
+cubicBox :: CubicPosition Double -> Rect Double
+cubicBox p = space1 pts
+  where
+    ts = cubicDerivs p
+    pts = cubicBezier p <$>
+          filter
+          (|.| Range 0 1)
+          ([0,1] <> ts)
+
+-- | Bounding box for a list of path XYs.
+--
+pathBoxes :: [(PathInfo Double, Point Double)] -> Maybe (Rect Double)
+pathBoxes [] = Nothing
+pathBoxes (x:xs) =
+  L.fold (L.Fold step begin (Just . snd)) xs
+  where
+    begin :: (Point Double, Rect Double)
+    begin = (snd x, singleton (snd x))
+    step ::
+      (Point Double, Rect Double) ->
+      (PathInfo Double, Point Double) ->
+      (Point Double, Rect Double)
+    step (start, r) a = (snd a, pathBox start a <> r)
+
+-- | Bounding box for a path info, start and end Points.
+--
+pathBox :: Point Double -> (PathInfo Double, Point Double) -> Rect Double
+pathBox start (info, end) =
+  case info of
+    StartI -> singleton end
+    LineI -> space1 [start, end]
+    CubicI c1 c2 -> cubicBox (CubicPosition start end c1 c2)
+    QuadI c -> quadBox (QuadPosition start end c)
+    ArcI i -> arcBox (ArcPosition start end i)
diff --git a/test/test.hs b/test/test.hs
--- a/test/test.hs
+++ b/test/test.hs
@@ -10,7 +10,10 @@
 main = doctest
   [ "src/Chart.hs",
     "src/Data/FormatN.hs",
+    "src/Data/Path.hs",
     "src/Chart/Types.hs",
-    "src/Chart/Bar.hs"
+    "src/Chart/Bar.hs",
+    "src/Chart/Render.hs",
+    "src/Chart/Surface.hs",
+    "src/Chart/Examples.hs"
   ]
-  
